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

DefaultViewBuilderCore

class DefaultViewBuilderCore<TConfig extends {
name: string;
columns?: unknown;
}
>
{
constructor(name: TConfig["name"], schema: string | undefined);
protected config: {};
protected name: TConfig["name"];
protected schema: string | undefined;
readonly _: {
readonly name: TConfig["name"];
readonly columns: TConfig["columns"];
}
;
 
with(config: ViewWithConfig): this;
}

§Type Parameters

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

§Constructors

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

§Properties

§
config: {}
[src]
§
name: TConfig["name"]
[src]
§
schema: string | undefined
[src]
§
_: {
readonly name: TConfig["name"];
readonly columns: TConfig["columns"];
}
[src]

§Methods

§
with(config: ViewWithConfig): this
[src]