Initial commit - Event Planner application
This commit is contained in:
13
node_modules/kysely/dist/cjs/query-compiler/compiled-query.d.ts
generated
vendored
Normal file
13
node_modules/kysely/dist/cjs/query-compiler/compiled-query.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import { type QueryId } from '../util/query-id.js';
|
||||
import type { RootOperationNode } from './query-compiler.js';
|
||||
export interface CompiledQuery<O = unknown> {
|
||||
readonly query: RootOperationNode;
|
||||
readonly queryId: QueryId;
|
||||
readonly sql: string;
|
||||
readonly parameters: ReadonlyArray<unknown>;
|
||||
}
|
||||
type CompiledQueryFactory = Readonly<{
|
||||
raw(sql: string, parameters?: unknown[]): Readonly<CompiledQuery>;
|
||||
}>;
|
||||
export declare const CompiledQuery: CompiledQueryFactory;
|
||||
export {};
|
||||
Reference in New Issue
Block a user