Initial commit - Event Planner application
This commit is contained in:
15
node_modules/kysely/dist/esm/operation-node/where-node.d.ts
generated
vendored
Normal file
15
node_modules/kysely/dist/esm/operation-node/where-node.d.ts
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import type { OperationNode } from './operation-node.js';
|
||||
export interface WhereNode extends OperationNode {
|
||||
readonly kind: 'WhereNode';
|
||||
readonly where: OperationNode;
|
||||
}
|
||||
type WhereNodeFactory = Readonly<{
|
||||
is(node: OperationNode): node is WhereNode;
|
||||
create(filter: OperationNode): Readonly<WhereNode>;
|
||||
cloneWithOperation(whereNode: WhereNode, operator: 'And' | 'Or', operation: OperationNode): Readonly<WhereNode>;
|
||||
}>;
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
export declare const WhereNode: WhereNodeFactory;
|
||||
export {};
|
||||
Reference in New Issue
Block a user