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

MaterializedViewBuilderCore

class MaterializedViewBuilderCore<TConfig extends {
name: string;
columns?: unknown;
}
>
{
constructor(name: TConfig["name"], schema: string | undefined);
protected config: {
using?: string;
tablespace?: string;
withNoData?: boolean;
}
;
protected name: TConfig["name"];
protected schema: string | undefined;
_: {
readonly name: TConfig["name"];
readonly columns: TConfig["columns"];
}
;
 
tablespace(tablespace: string): this;
using(using: string): this;
with(config: PgMaterializedViewWithConfig): this;
withNoData(): this;
}

§Type Parameters

§
TConfig extends {
name: string;
columns?: unknown;
}
[src]

§Constructors

§
new MaterializedViewBuilderCore(name: TConfig["name"], schema: string | undefined)
[src]

§Properties

§
config: {
using?: string;
tablespace?: string;
withNoData?: boolean;
}
[src]
§
name: TConfig["name"]
[src]
§
schema: string | undefined
[src]
§
_: {
readonly name: TConfig["name"];
readonly columns: TConfig["columns"];
}
[src]

§Methods

§
tablespace(tablespace: string): this
[src]
§
using(using: string): this
[src]
§
withNoData(): this
[src]