TenantAtlas/apps/platform/.pnpm-store/v10/files/23/28800589ed23ebf8739db99b11ff0d6e865ea17b33b4976f24416d7f21b8c2c357f8aecda66b0dbe9adc7db1aa320feff86d81c0f60425d4e853c2255adc46
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

16 lines
521 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";
export declare function getSQLiteColumnBuilders(): {
blob: typeof blob;
customType: typeof customType;
integer: typeof integer;
numeric: typeof numeric;
real: typeof real;
text: typeof text;
};
export type SQLiteColumnBuilders = ReturnType<typeof getSQLiteColumnBuilders>;