TenantAtlas/apps/platform/.pnpm-store/v10/files/0a/ab85624824c8ef7f8141f33c7d162dbdae29e81f910a21e247081ffc6192ef8c5363760148e6e18b9a82eee7bbb390d45ad5d74e6bae3551d81484c41ba7bb
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
616 B
Plaintext

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