import { IConnection } from "./IConnection"; import { DbType } from "../Common/Type"; export interface IDriver { dbType: T; allowPooling: boolean; getConnection(): Promise; database: string; schema?: string; supportTVP?: boolean; }