Files
klz-cables.com/.pnpm-store/v10/files/9a/55741e038f45f6e41938bb00de4a05a23df128775f54a38e83c0b7b5151f1011f609865f365effaf95060864b4fb9d56188456d6700122e72112ddede57ce6
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

28 lines
688 B
Plaintext

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