all.d.cts 527 B

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