Files
klz-cables.com/.pnpm-store/v10/files/ae/1df319cf9f1d2503ffd95430cace7deb5a2758437f500aef4ba9c3ea32220441590bfb3f149959bcb404e1cf2338151751e189ba0167e2df80f0a7fa929182
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
723 B
Plaintext

import { entityKind } from "../../entity.js";
import { SingleStoreColumn, SingleStoreColumnBuilder } from "./common.js";
class SingleStoreTimeBuilder extends SingleStoreColumnBuilder {
static [entityKind] = "SingleStoreTimeBuilder";
constructor(name) {
super(name, "string", "SingleStoreTime");
}
/** @internal */
build(table) {
return new SingleStoreTime(
table,
this.config
);
}
}
class SingleStoreTime extends SingleStoreColumn {
static [entityKind] = "SingleStoreTime";
getSQLType() {
return `time`;
}
}
function time(name) {
return new SingleStoreTimeBuilder(name ?? "");
}
export {
SingleStoreTime,
SingleStoreTimeBuilder,
time
};
//# sourceMappingURL=time.js.map