Installation
npm install --save @types/pg-pool
Summary
This package contains type definitions for pg-pool (https://github.com/brianc/node-pg-pool).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pg-pool.
import * as pg from 'pg';
declare class Pool<T extends pg.Client> extends pg.Pool {
readonly Client: Pool.ClientLikeCtr<T>;
constructor(config?: Pool.Config<T>, client?: Pool.ClientLikeCtr<T>);
connect(): Promise<T & pg.PoolClient>;
connect(callback: (err?: Error, client?: T & pg.PoolClient, done?: (release?: any) => void) => void): void;
on(event: 'error', listener: (err: Error, client: T & pg.PoolClient) => void): this;
on(event: 'connect' | 'acquire' | 'remove', listener: (client: T & pg.PoolClient) => void): this;
}
declare namespace Pool {
type ClientLikeCtr<T extends pg.Client> = new(config?: string | pg.ClientConfig) => T;
interface Config<T extends pg.Client> extends pg.PoolConfig {
Client?: ClientLikeCtr<T> | undefined;
}
}
export = Pool;
Additional Details
- Last updated: Thu, 08 Jul 2021 20:19:33 GMT
- Dependencies: @types/pg
- Global values: none
Credits
These definitions were written by Leo Liang, and Nikita Tokarchuk.