Files
klz-cables.com/.pnpm-store/v10/files/0b/75d83f1ab99b28c3bca6c6c39566698a62043b67ca144ce742ec7ca8187ce025b8ebe4fd1883f9b82494cf93ed3f2ccb57ba8904e9ba0f6f8a699379596ffb
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

30 lines
701 B
Plaintext

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