PoolConnection.d.ts 289 B

12345678910
  1. import { Connection } from './Connection.js';
  2. import { Pool as PromisePool } from '../../../promise.js';
  3. declare class PoolConnection extends Connection {
  4. connection: Connection;
  5. release(): void;
  6. promise(promiseImpl?: PromiseConstructor): PromisePool;
  7. }
  8. export { PoolConnection };