UNPKG

pg-boss

Version:

Queueing jobs in Postgres from Node.js like a boss

8 lines 291 B
import type { IDatabase } from '../types.ts'; export interface KnexTransactionLike { raw<T = any>(sql: string, bindings?: readonly unknown[]): Promise<{ rows: T[]; }>; } export declare function fromKnex(trx: KnexTransactionLike): IDatabase; //# sourceMappingURL=knex.d.ts.map