UNPKG

@starbemtech/star-db-query-builder

Version:

A query builder to be used with mysql or postgres

5 lines (4 loc) 274 B
import { Pool, PoolConfig } from 'pg'; import { IDatabaseClient } from './IDatabaseClient'; import { RetryOptions } from '../default/types'; export declare const createPgClient: (pool: Pool, retryOptions?: RetryOptions, poolConfig?: PoolConfig) => Promise<IDatabaseClient>;