AK-21/Graphite-Industrial-Intelligence
0
1import { blob } from "./blob.cjs";2import { customType } from "./custom.cjs";3import { integer } from "./integer.cjs";4import { numeric } from "./numeric.cjs";5import { real } from "./real.cjs";6import { text } from "./text.cjs";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 