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

DropViewBuilder

class DropViewBuilder implements OperationNodeSource, Compilable {
constructor(props: DropViewBuilderProps);
$call<T>(func: (qb: this) => T): T;
cascade(): DropViewBuilder;
compile(): CompiledQuery;
execute(): Promise<void>;
ifExists(): DropViewBuilder;
materialized(): DropViewBuilder;
toOperationNode(): DropViewNode;
}

§Implements

§Constructors

§
new DropViewBuilder(props: DropViewBuilderProps)
[src]

§Methods

§
$call<T>(func: (qb: this) => T): T
[src]

Simply calls the provided function passing this as the only argument. $call returns what the provided function returns.

§
execute(): Promise<void>
[src]
§
materialized(): DropViewBuilder
[src]
§
toOperationNode(): DropViewNode
[src]