all.d.ts 521 B

123456789101112131415
  1. import { blob } from "./blob.js";
  2. import { customType } from "./custom.js";
  3. import { integer } from "./integer.js";
  4. import { numeric } from "./numeric.js";
  5. import { real } from "./real.js";
  6. import { text } from "./text.js";
  7. export 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. };
  15. export type SQLiteColumnBuilders = ReturnType<typeof getSQLiteColumnBuilders>;