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