Type Alias PostgresPoolType

PostgresPoolType: {
    connect: ((options: PostgresClientOptions) => Promise<PostgresClientType>);
    query: ((text: string, values?: any[]) => Promise<PostgresQueryResultType>);
    new (options: PostgresClientOptions): PostgresPoolClientType;
}