TenantAtlas/apps/platform/.pnpm-store/v10/files/d0/3c56b028674bf47b9ed49e2d2e7927bcc3399e308663c1a6c94d08c667981851169fac5c083b5f0c0c11963266436d4b32291ff6d2e73be5c4a947986dcf25
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

10 lines
532 B
Plaintext

import { entityKind } from "../entity.js";
import type { ColumnsSelection } from "../sql/sql.js";
import { View } from "../sql/sql.js";
export declare abstract class SingleStoreViewBase<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: 'SingleStoreViewBase';
};
}