index.d.ts 810 B

123456789101112131415161718
  1. export { Cartesian } from './cartesian';
  2. export { Polar, getPolarOptions } from './polar';
  3. export { Helix } from './helix';
  4. export { Transpose } from './transpose';
  5. export { Theta, getThetaOptions } from './theta';
  6. export { Radial, getRadialOptions } from './radial';
  7. export { Parallel } from './parallel';
  8. export { Fisheye } from './fisheye';
  9. export { Radar } from './radar';
  10. export type { CartesianOptions } from './cartesian';
  11. export type { PolarOptions } from './polar';
  12. export type { HelixOptions } from './helix';
  13. export type { TransposeOptions } from './transpose';
  14. export type { ThetaOptions } from './theta';
  15. export type { ParallelOptions } from './parallel';
  16. export type { FisheyeOptions } from './fisheye';
  17. export type { RadialOptions } from './radial';
  18. export type { RadarOptions } from './radar';