Files
klz-cables.com/.pnpm-store/v10/files/d9/3ff41d469a50b27523f7ea43785d68b60b0c673d60fea2ede0fa186d828953c1d5a3cf585ac3bb1219290ebdadb249cf6bf7eba4f911a594ec4680a96169c9
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
655 B
Plaintext

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