index.d.ts 1.1 KB

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