all.d.cts 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. import { bigint } from "./bigint.cjs";
  2. import { bigintT } from "./bigintT.cjs";
  3. import { boolean } from "./boolean.cjs";
  4. import { bytes } from "./bytes.cjs";
  5. import { customType } from "./custom.cjs";
  6. import { dateDuration } from "./date-duration.cjs";
  7. import { decimal } from "./decimal.cjs";
  8. import { doublePrecision } from "./double-precision.cjs";
  9. import { duration } from "./duration.cjs";
  10. import { integer } from "./integer.cjs";
  11. import { json } from "./json.cjs";
  12. import { localDate } from "./localdate.cjs";
  13. import { localTime } from "./localtime.cjs";
  14. import { real } from "./real.cjs";
  15. import { relDuration } from "./relative-duration.cjs";
  16. import { smallint } from "./smallint.cjs";
  17. import { text } from "./text.cjs";
  18. import { timestamp } from "./timestamp.cjs";
  19. import { timestamptz } from "./timestamptz.cjs";
  20. import { uuid } from "./uuid.cjs";
  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>;