Files
klz-cables.com/.pnpm-store/v10/files/e4/e80c3fe5b0878731cad6bc8861f145bab4e92ad71b5436fa0427be6e056972ac7741de6b25edf15eba290e4e8c3aab463ab264c9e1eb3a3c83684cf4787469
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
730 B
Plaintext

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