TenantAtlas/apps/platform/.pnpm-store/v10/files/dc/3b2f755374d9c1ce88f2770d92ba7f4c65a80844dac422e619296739be3935fb0fa9d55e18e3e0162677e3af46df2d67d67fdfc20fc204d196d53f4836a7d5
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

27 lines
641 B
Plaintext

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