TenantAtlas/apps/platform/.pnpm-store/v10/files/88/3050bd72916669d35e35e0b88177c66f604817c2fa1e2b9e06ce2781699abd948d08b76da99c0912aa763124f0b9b338ddd9c5dfc0e3be2c129332dc5896a8
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
606 B
Plaintext

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