AK-21/Graphite-Industrial-Intelligence
0
1import { entityKind } from "../entity.cjs";2import type { SQL } from "../sql/sql.cjs";3import type { SQLiteTable } from "./table.cjs";4export declare class CheckBuilder {5 name: string;6 value: SQL;7 static readonly [entityKind]: string;8 protected brand: 'SQLiteConstraintBuilder';9 constructor(name: string, value: SQL);10 build(table: SQLiteTable): Check;11}12export declare class Check {13 table: SQLiteTable;14 static readonly [entityKind]: string;15 _: {16 brand: 'SQLiteCheck';17 };18 readonly name: string;19 readonly value: SQL;20 constructor(table: SQLiteTable, builder: CheckBuilder);21}22export declare function check(name: string, value: SQL): CheckBuilder;23 