TenantAtlas/apps/platform/.pnpm-store/v10/files/24/56681c6120e85a935a4bce8521273aa22e949ddc0d1d2cc875d86b5ff17d8960c8af27dbee79e1927f776ef2b31f2165bff766993278d31800acc748a32490
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

9 lines
484 B
Plaintext

import { entityKind } from "../entity.cjs";
import { type ColumnsSelection, View } from "../sql/sql.cjs";
export declare abstract class PgViewBase<TName extends string = string, TExisting extends boolean = boolean, TSelectedFields extends ColumnsSelection = ColumnsSelection> extends View<TName, TExisting, TSelectedFields> {
static readonly [entityKind]: string;
readonly _: View<TName, TExisting, TSelectedFields>['_'] & {
readonly viewBrand: 'PgViewBase';
};
}