Files
klz-cables.com/.pnpm-store/v10/files/f2/6b48471eac97e72e5e3c7809c0743da52b7b56cec44e7e7fc4d9c8444f079aa65bb682ecc29dd7bb8654143e3fdacc70d0d70b10714081ad5af8dde7b8a77c
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

19 lines
607 B
Plaintext

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