TenantAtlas/apps/platform/.pnpm-store/v10/files/cf/cc341ac4185539527d4a366bb604e7b70d631f3a383bf833eab30f1f3da52e92f689dee8b240a71c880a7e902a769cdd035d0343643c3d2864bc6b46ec6a26
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
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