TenantAtlas/apps/platform/.pnpm-store/v10/files/3b/ceca154ef6789f302a3733ea51f12dd3869872fcd8197c901a2ba5e6a45f414de73086f3b06f1fcaf70fb36d3162812ff62deabf590f86d59aa87e23679c9f
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
488 B
Plaintext

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