CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
checks.d.ts23 linesDownload Raw Back to sqlite-core
1import { entityKind } from "../entity.js";2import type { SQL } from "../sql/sql.js";3import type { SQLiteTable } from "./table.js";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