Initial commit - Event Planner application

This commit is contained in:
mberlin
2026-03-18 14:55:56 -03:00
commit 86d779eb4d
7548 changed files with 1006324 additions and 0 deletions

View 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 {};