11 lines
289 B
TypeScript
11 lines
289 B
TypeScript
import { Connection } from './Connection.js';
|
|
import { Pool as PromisePool } from '../../../promise.js';
|
|
|
|
declare class PoolConnection extends Connection {
|
|
connection: Connection;
|
|
release(): void;
|
|
promise(promiseImpl?: PromiseConstructor): PromisePool;
|
|
}
|
|
|
|
export { PoolConnection };
|