index.d.ts 1.1 KB

123456789101112131415
  1. export { default as Geometry } from "./geometry";
  2. export { default as Zoom } from "./zoom";
  3. export { default as Line, withLine, LineView } from "./line";
  4. export { default as Area, withArea, AreaView } from "./area";
  5. export { default as Interval, withInterval, IntervalView } from "./interval";
  6. export { default as Point, withPoint, PointView } from "./point";
  7. export { default as Axis, withAxis, AxisView } from "./axis";
  8. export { default as Legend, withLegend, LegendView } from "./legend";
  9. export { default as Guide, withGuide, TextGuide, PointGuide, LineGuide, ArcGuide, RectGuide, ImageGuide, TagGuide } from "./guide";
  10. export { default as Tooltip, withTooltip, TooltipView } from "./tooltip";
  11. export { default as Treemap, withTreemap, TreemapView } from "./treemap";
  12. export { default as Sunburst, withSunburst, SunburstView } from "./sunburst";
  13. export { default as PieLabel, withPieLabel, PieLabelView } from "./pieLabel";
  14. export { default as Gauge, withGauge, GaugeView } from "./gauge";
  15. export { default as ScrollBar, withScrollBar, ScrollBarView } from "./scrollBar";