TenantAtlas/apps/platform/.pnpm-store/v10/files/f2/6b48471eac97e72e5e3c7809c0743da52b7b56cec44e7e7fc4d9c8444f079aa65bb682ecc29dd7bb8654143e3fdacc70d0d70b10714081ad5af8dde7b8a77c
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
607 B
Plaintext

import { entityKind } from "../entity.js";
import type { SQL } from "../sql/index.js";
import type { GelTable } from "./table.js";
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;