pwaLUPMIS2/node_modules/sqlocal/dist/lib/normalize-statement.d.ts
2026-03-04 12:59:40 +01:00

7 lines
263 B
TypeScript

import type { StatementInput, Statement } from '../types.js';
type NormalStatement = Statement & {
exec?: <T extends Record<string, any>>() => Promise<T[]>;
};
export declare function normalizeStatement(statement: StatementInput): NormalStatement;
export {};