all.d.ts 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. import { bigint } from "./bigint.js";
  2. import { bigserial } from "./bigserial.js";
  3. import { boolean } from "./boolean.js";
  4. import { char } from "./char.js";
  5. import { cidr } from "./cidr.js";
  6. import { customType } from "./custom.js";
  7. import { date } from "./date.js";
  8. import { doublePrecision } from "./double-precision.js";
  9. import { inet } from "./inet.js";
  10. import { integer } from "./integer.js";
  11. import { interval } from "./interval.js";
  12. import { json } from "./json.js";
  13. import { jsonb } from "./jsonb.js";
  14. import { line } from "./line.js";
  15. import { macaddr } from "./macaddr.js";
  16. import { macaddr8 } from "./macaddr8.js";
  17. import { numeric } from "./numeric.js";
  18. import { point } from "./point.js";
  19. import { geometry } from "./postgis_extension/geometry.js";
  20. import { real } from "./real.js";
  21. import { serial } from "./serial.js";
  22. import { smallint } from "./smallint.js";
  23. import { smallserial } from "./smallserial.js";
  24. import { text } from "./text.js";
  25. import { time } from "./time.js";
  26. import { timestamp } from "./timestamp.js";
  27. import { uuid } from "./uuid.js";
  28. import { varchar } from "./varchar.js";
  29. import { bit } from "./vector_extension/bit.js";
  30. import { halfvec } from "./vector_extension/halfvec.js";
  31. import { sparsevec } from "./vector_extension/sparsevec.js";
  32. import { vector } from "./vector_extension/vector.js";
  33. export declare function getPgColumnBuilders(): {
  34. bigint: typeof bigint;
  35. bigserial: typeof bigserial;
  36. boolean: typeof boolean;
  37. char: typeof char;
  38. cidr: typeof cidr;
  39. customType: typeof customType;
  40. date: typeof date;
  41. doublePrecision: typeof doublePrecision;
  42. inet: typeof inet;
  43. integer: typeof integer;
  44. interval: typeof interval;
  45. json: typeof json;
  46. jsonb: typeof jsonb;
  47. line: typeof line;
  48. macaddr: typeof macaddr;
  49. macaddr8: typeof macaddr8;
  50. numeric: typeof numeric;
  51. point: typeof point;
  52. geometry: typeof geometry;
  53. real: typeof real;
  54. serial: typeof serial;
  55. smallint: typeof smallint;
  56. smallserial: typeof smallserial;
  57. text: typeof text;
  58. time: typeof time;
  59. timestamp: typeof timestamp;
  60. uuid: typeof uuid;
  61. varchar: typeof varchar;
  62. bit: typeof bit;
  63. halfvec: typeof halfvec;
  64. sparsevec: typeof sparsevec;
  65. vector: typeof vector;
  66. };
  67. export type PgColumnsBuilders = ReturnType<typeof getPgColumnBuilders>;