Initial commit - Event Planner application
This commit is contained in:
15
node_modules/kysely/dist/cjs/operation-node/output-node.d.ts
generated
vendored
Normal file
15
node_modules/kysely/dist/cjs/operation-node/output-node.d.ts
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import type { OperationNode } from './operation-node.js';
|
||||
export interface OutputNode extends OperationNode {
|
||||
readonly kind: 'OutputNode';
|
||||
readonly selections: ReadonlyArray<OperationNode>;
|
||||
}
|
||||
type OutputNodeFactory = Readonly<{
|
||||
is(node: OperationNode): node is OutputNode;
|
||||
create(selections: ReadonlyArray<OperationNode>): Readonly<OutputNode>;
|
||||
cloneWithSelections(output: OutputNode, selections: ReadonlyArray<OperationNode>): Readonly<OutputNode>;
|
||||
}>;
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
export declare const OutputNode: OutputNodeFactory;
|
||||
export {};
|
||||
Reference in New Issue
Block a user