all.js 419 B

1234567891011121314151617181920
  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. function getSQLiteColumnBuilders() {
  8. return {
  9. blob,
  10. customType,
  11. integer,
  12. numeric,
  13. real,
  14. text
  15. };
  16. }
  17. export {
  18. getSQLiteColumnBuilders
  19. };
  20. //# sourceMappingURL=all.js.map