mirror of
https://github.com/DeNNiiInc/Connect-5.git
synced 2026-04-18 09:36:01 +00:00
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 };
|