Files
klz-cables.com/.pnpm-store/v10/files/f5/fb565bbf2ed0ee8917dcc13ac8cd79bee115455d2e34d10430db310f36496566391768491251cc6e760783da11cc2509ba874e475bacc481dbb1512732d13a
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

16 lines
659 B
Plaintext

import { entityKind } from "../entity.cjs";
import { SQL, type SQLWrapper } from "../sql/sql.cjs";
import type { gelSequence } from "./sequence.cjs";
import { type GelTableFn } from "./table.cjs";
export declare class GelSchema<TName extends string = string> implements SQLWrapper {
readonly schemaName: TName;
static readonly [entityKind]: string;
constructor(schemaName: TName);
table: GelTableFn<TName>;
sequence: typeof gelSequence;
getSQL(): SQL;
shouldOmitSQLParens(): boolean;
}
export declare function isGelSchema(obj: unknown): obj is GelSchema;
export declare function gelSchema<T extends string>(name: T): GelSchema<T>;