TenantAtlas/apps/platform/.pnpm-store/v10/files/69/20fd1c8225984f329afff7349149bcda78a4dd9c7662f1f901ccf2c49395934dae9a408ec40fe9f21e9f7c5952c85c27f911098e15ec706a9d05a6336f506f
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
640 B
Plaintext

import { entityKind } from "../../entity.js";
import { SQLiteColumn, SQLiteColumnBuilder } from "./common.js";
class SQLiteRealBuilder extends SQLiteColumnBuilder {
static [entityKind] = "SQLiteRealBuilder";
constructor(name) {
super(name, "number", "SQLiteReal");
}
/** @internal */
build(table) {
return new SQLiteReal(table, this.config);
}
}
class SQLiteReal extends SQLiteColumn {
static [entityKind] = "SQLiteReal";
getSQLType() {
return "real";
}
}
function real(name) {
return new SQLiteRealBuilder(name ?? "");
}
export {
SQLiteReal,
SQLiteRealBuilder,
real
};
//# sourceMappingURL=real.js.map