UNPKG

mysql2

Version:

fast mysql driver. Implements core protocol, prepared statements, ssl and compression in native JS

11 lines (8 loc) 289 B
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 };