mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 05:20:24 +08:00
11 lines
318 B
TypeScript
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";
|
|
}
|