UNPKG

@dataplan/pg

Version:
20 lines 807 B
import type { SQL } from "pg-sql2"; import type { PgResource } from "../datasource.ts"; import type { PgClassFilter } from "../filters/pgClassFilter.ts"; import type { PgConditionCapableParent } from "./pgCondition.ts"; import { PgCondition } from "./pgCondition.ts"; export declare class PgTempTable<TResource extends PgResource<any, any, any, any, any>> implements PgConditionCapableParent { static $$export: { moduleName: string; exportName: string; }; readonly alias: SQL; readonly conditions: SQL[]; readonly parent: PgClassFilter; readonly resource: TResource; constructor(parent: PgClassFilter, resource: TResource); where(condition: SQL): void; wherePlan(): PgCondition<this>; fromExpression(): SQL; } //# sourceMappingURL=pgTempTable.d.ts.map