import type { Knex } from 'knex'; export interface QueryResponse { command: string; fields: Record[]; oid?: unknown; rowAsArray: boolean; rowCount: number | null; rows: T[]; } export type { Knex }; export type Transaction = Knex.Transaction; //# sourceMappingURL=knex.types.d.ts.map