mysql2
Version:
fast mysql driver. Implements core protocol, prepared statements, ssl and compression in native JS
12 lines (9 loc) • 317 B
TypeScript
import { Connection } from './Connection.js';
import { Pool as PromisePool } from '../../../promise.js';
declare class PoolConnection extends Connection {
connection: Connection;
release(): void;
[Symbol.dispose](): void;
promise(promiseImpl?: PromiseConstructor): PromisePool;
}
export { PoolConnection };