Interface PostgresPoolClientType

interface PostgresPoolClientType {
    connect: (() => Promise<PostgresClientType>);
    end: (() => Promise<void>);
    idleCount: number;
    query: ((text: string, values?: any[]) => Promise<PostgresQueryResultType>);
    release: (() => void);
    totalCount: number;
}

Properties

connect: (() => Promise<PostgresClientType>)
end: (() => Promise<void>)
idleCount: number
query: ((text: string, values?: any[]) => Promise<PostgresQueryResultType>)
release: (() => void)
totalCount: number