TenantAtlas/apps/platform/.pnpm-store/v10/files/e4/e80c3fe5b0878731cad6bc8861f145bab4e92ad71b5436fa0427be6e056972ac7741de6b25edf15eba290e4e8c3aab463ab264c9e1eb3a3c83684cf4787469
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02: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