CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
checks.d.ts19 linesDownload Raw Back to gel-core
1import { entityKind } from "../entity.js";2import type { SQL } from "../sql/index.js";3import type { GelTable } from "./table.js";4export declare class CheckBuilder {5    name: string;6    value: SQL;7    static readonly [entityKind]: string;8    protected brand: 'GelConstraintBuilder';9    constructor(name: string, value: SQL);10}11export declare class Check {12    table: GelTable;13    static readonly [entityKind]: string;14    readonly name: string;15    readonly value: SQL;16    constructor(table: GelTable, builder: CheckBuilder);17}18export declare function check(name: string, value: SQL): CheckBuilder;19