Initial commit - Event Planner application
This commit is contained in:
16
node_modules/kysely/dist/cjs/operation-node/check-constraint-node.d.ts
generated
vendored
Normal file
16
node_modules/kysely/dist/cjs/operation-node/check-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 CheckConstraintNode extends OperationNode {
|
||||
readonly kind: 'CheckConstraintNode';
|
||||
readonly expression: OperationNode;
|
||||
readonly name?: IdentifierNode;
|
||||
}
|
||||
type CheckConstraintNodeFactory = Readonly<{
|
||||
is(node: OperationNode): node is CheckConstraintNode;
|
||||
create(expression: OperationNode, constraintName?: string): Readonly<CheckConstraintNode>;
|
||||
}>;
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
export declare const CheckConstraintNode: CheckConstraintNodeFactory;
|
||||
export {};
|
||||
Reference in New Issue
Block a user