Initial commit - Event Planner application
This commit is contained in:
20
node_modules/kysely/dist/cjs/operation-node/drop-view-node.d.ts
generated
vendored
Normal file
20
node_modules/kysely/dist/cjs/operation-node/drop-view-node.d.ts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import type { OperationNode } from './operation-node.js';
|
||||
import { SchemableIdentifierNode } from './schemable-identifier-node.js';
|
||||
export type DropViewNodeParams = Omit<Partial<DropViewNode>, 'kind' | 'name'>;
|
||||
export interface DropViewNode extends OperationNode {
|
||||
readonly kind: 'DropViewNode';
|
||||
readonly name: SchemableIdentifierNode;
|
||||
readonly ifExists?: boolean;
|
||||
readonly materialized?: boolean;
|
||||
readonly cascade?: boolean;
|
||||
}
|
||||
type DropViewNodeFactory = Readonly<{
|
||||
is(node: OperationNode): node is DropViewNode;
|
||||
create(name: string): Readonly<DropViewNode>;
|
||||
cloneWith(dropView: DropViewNode, params: DropViewNodeParams): Readonly<DropViewNode>;
|
||||
}>;
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
export declare const DropViewNode: DropViewNodeFactory;
|
||||
export {};
|
||||
Reference in New Issue
Block a user