Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DropViewNode

interface DropViewNode extends OperationNode {
readonly cascade?: boolean;
readonly ifExists?: boolean;
readonly kind: "DropViewNode";
readonly materialized?: boolean;
readonly name: SchemableIdentifierNode;
}
const DropViewNode: Readonly<{
is(node: OperationNode): node is DropViewNode;
create(name: string): DropViewNode;
cloneWith(dropView: DropViewNode, params: DropViewNodeParams): DropViewNode;
}
>
;

§Extends

§Properties

§
readonly cascade?: boolean
[src]
§
readonly ifExists?: boolean
[src]
§
readonly kind: "DropViewNode"
[src]
§
readonly materialized?: boolean
[src]