all.d.ts 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. import { bigint } from "./bigint.js";
  2. import { bigintT } from "./bigintT.js";
  3. import { boolean } from "./boolean.js";
  4. import { bytes } from "./bytes.js";
  5. import { customType } from "./custom.js";
  6. import { dateDuration } from "./date-duration.js";
  7. import { decimal } from "./decimal.js";
  8. import { doublePrecision } from "./double-precision.js";
  9. import { duration } from "./duration.js";
  10. import { integer } from "./integer.js";
  11. import { json } from "./json.js";
  12. import { localDate } from "./localdate.js";
  13. import { localTime } from "./localtime.js";
  14. import { real } from "./real.js";
  15. import { relDuration } from "./relative-duration.js";
  16. import { smallint } from "./smallint.js";
  17. import { text } from "./text.js";
  18. import { timestamp } from "./timestamp.js";
  19. import { timestamptz } from "./timestamptz.js";
  20. import { uuid } from "./uuid.js";
  21. export declare function getGelColumnBuilders(): {
  22. localDate: typeof localDate;
  23. localTime: typeof localTime;
  24. decimal: typeof decimal;
  25. dateDuration: typeof dateDuration;
  26. bigintT: typeof bigintT;
  27. duration: typeof duration;
  28. relDuration: typeof relDuration;
  29. bytes: typeof bytes;
  30. customType: typeof customType;
  31. bigint: typeof bigint;
  32. boolean: typeof boolean;
  33. doublePrecision: typeof doublePrecision;
  34. integer: typeof integer;
  35. json: typeof json;
  36. real: typeof real;
  37. smallint: typeof smallint;
  38. text: typeof text;
  39. timestamptz: typeof timestamptz;
  40. uuid: typeof uuid;
  41. timestamp: typeof timestamp;
  42. };
  43. export type GelColumnsBuilders = ReturnType<typeof getGelColumnBuilders>;