Files
klz-cables.com/.pnpm-store/v10/files/cf/cc341ac4185539527d4a366bb604e7b70d631f3a383bf833eab30f1f3da52e92f689dee8b240a71c880a7e902a769cdd035d0343643c3d2864bc6b46ec6a26
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
737 B
Plaintext

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