TenantAtlas/apps/platform/.pnpm-store/v10/files/45/609f82af11b1d6af81cc2bfbbf7f8ef168b501c375362ebd96128b7149035eb7e8d4fb2ec9a32c34d9110acdbb2f08e0bb61ea6edf6cbd9d17759204ddd26f
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
535 B
Plaintext

import { entityKind } from "../entity.cjs";
import type { ColumnsSelection } from "../sql/sql.cjs";
import { View } from "../sql/sql.cjs";
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';
};
}