TenantAtlas/apps/platform/.pnpm-store/v10/files/6e/c4bc6d4919df14670cc3bdbc0994e367fd5155f80078d1548794262fa5181f9f63e7061910e83e4867acb80b10295b3a8fe3c4d0d75a5d62fee35686ff781c
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
613 B
Plaintext

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