UNPKG

inceptum

Version:

hipages take on the foundational library for enterprise-grade apps written in NodeJS

5 lines (4 loc) 122 B
export interface ConnectionPool<T> { getConnection(cb: (err: Error, connection: T) => void): void; end(): void; }