Files
DefinitelyTyped/pg-pool/pg-pool.d.ts
2016-08-30 20:38:15 +08:00

11 lines
318 B
TypeScript

// Type definitions for pg-pool
// Project: https://github.com/brianc/node-pg-pool
// Definitions by: Leo Liang <https://github.com/aleung>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference path="../pg/pg.d.ts" />
declare module "pg-pool" {
export {Pool, PoolConfig} from "pg";
}