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