This commit is contained in:
2025-10-21 08:10:15 +00:00
commit 8eaf13f445
1983 changed files with 292430 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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 };