Files
Ammaar Reshi d6025af146 Initial commit
2025-01-04 14:06:53 +00:00

6 lines
165 B
TypeScript

import type { Query } from "./index.js";
export interface PreparedQuery {
getQuery(): Query;
mapResult(response: unknown, isFromBatch?: boolean): unknown;
}