AK-21/Graphite-Industrial-Intelligence
0
1import { blob } from "./blob.js";2import { customType } from "./custom.js";3import { integer } from "./integer.js";4import { numeric } from "./numeric.js";5import { real } from "./real.js";6import { text } from "./text.js";7export declare function getSQLiteColumnBuilders(): {8 blob: typeof blob;9 customType: typeof customType;10 integer: typeof integer;11 numeric: typeof numeric;12 real: typeof real;13 text: typeof text;14};15export type SQLiteColumnBuilders = ReturnType<typeof getSQLiteColumnBuilders>;16 