Files
klz-cables.com/.pnpm-store/v10/files/dc/3b2f755374d9c1ce88f2770d92ba7f4c65a80844dac422e619296739be3935fb0fa9d55e18e3e0162677e3af46df2d67d67fdfc20fc204d196d53f4836a7d5
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

27 lines
641 B
Plaintext

import { entityKind } from "../../entity.js";
import { GelColumn, GelColumnBuilder } from "./common.js";
class GelBooleanBuilder extends GelColumnBuilder {
static [entityKind] = "GelBooleanBuilder";
constructor(name) {
super(name, "boolean", "GelBoolean");
}
/** @internal */
build(table) {
return new GelBoolean(table, this.config);
}
}
class GelBoolean extends GelColumn {
static [entityKind] = "GelBoolean";
getSQLType() {
return "boolean";
}
}
function boolean(name) {
return new GelBooleanBuilder(name ?? "");
}
export {
GelBoolean,
GelBooleanBuilder,
boolean
};
//# sourceMappingURL=boolean.js.map