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

20 lines
419 B
Plaintext

import { blob } from "./blob.js";
import { customType } from "./custom.js";
import { integer } from "./integer.js";
import { numeric } from "./numeric.js";
import { real } from "./real.js";
import { text } from "./text.js";
function getSQLiteColumnBuilders() {
return {
blob,
customType,
integer,
numeric,
real,
text
};
}
export {
getSQLiteColumnBuilders
};
//# sourceMappingURL=all.js.map