UNPKG

pg-mem

Version:

A memory version of postgres

11 lines 469 B
import { IBoundQuery, IPreparedQuery, QueryDescription, QueryResult } from '../interfaces'; export declare class InterceptedPreparedQuery implements IPreparedQuery, IBoundQuery { private command; private result; constructor(command: string, result: any[]); describe(): QueryDescription; bind(args?: any[]): IBoundQuery; iterate(): IterableIterator<QueryResult>; executeAll(): QueryResult; } //# sourceMappingURL=prepared-intercepted.d.ts.map