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