TenantAtlas/apps/platform/.pnpm-store/v10/files/ca/c5bf990fb3143eb8ec75d685a92a45fa3c9240a163d995067ca8150208bea6f95e2e823e661f9e271946e4ba2940f7b9db73bc231fbcbe0dec9818f5afd076
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

19 lines
610 B
Plaintext

import { entityKind } from "../entity.cjs";
import type { SQL } from "../sql/index.cjs";
import type { GelTable } from "./table.cjs";
export declare class CheckBuilder {
name: string;
value: SQL;
static readonly [entityKind]: string;
protected brand: 'GelConstraintBuilder';
constructor(name: string, value: SQL);
}
export declare class Check {
table: GelTable;
static readonly [entityKind]: string;
readonly name: string;
readonly value: SQL;
constructor(table: GelTable, builder: CheckBuilder);
}
export declare function check(name: string, value: SQL): CheckBuilder;