/opt/canhelp/node_modules/kysely/dist/esm/query-compiler
Edit: /opt/canhelp/node_modules/kysely/dist/esm/query-compiler/compiled-query.d.ts (490B)
import { type QueryId } from '../util/query-id.js';
import type { RootOperationNode } from './query-compiler.js';
export interface CompiledQuery
{
readonly query: RootOperationNode;
readonly queryId: QueryId;
readonly sql: string;
readonly parameters: ReadonlyArray;
}
type CompiledQueryFactory = Readonly<{
raw(sql: string, parameters?: unknown[]): Readonly;
}>;
export declare const CompiledQuery: CompiledQueryFactory;
export {};