index.d.ts 1.3 KB

123456789101112131415161718192021222324
  1. export { LinearAxis as AxisLinear, ArcAxis as AxisArc } from './axis';
  2. export { AxisX } from './axisX';
  3. export { AxisY } from './axisY';
  4. export { AxisRadar } from './axisRadar';
  5. export { LegendCategory } from './legendCategory';
  6. export { LegendContinuous } from './legendContinuous';
  7. export { LegendContinuousBlock } from './legendContinuousBlock';
  8. export { LegendContinuousBlockSize } from './legendContinuousBlockSize';
  9. export { LegendContinuousSize } from './legendContinuousSize';
  10. export { TitleComponent } from './title';
  11. export { SliderX } from './sliderX';
  12. export { SliderY } from './sliderY';
  13. export { ScrollbarX } from './scrollbarX';
  14. export { ScrollbarY } from './scrollbarY';
  15. export type { AxisXOptions } from './axisX';
  16. export type { AxisYOptions } from './axisY';
  17. export type { LegendCategoryOptions } from './legendCategory';
  18. export type { LegendContinuousOptions } from './legendContinuous';
  19. export type { LegendContinuousBlockOptions } from './legendContinuousBlock';
  20. export type { LegendContinuousBlockSizeOptions } from './legendContinuousBlockSize';
  21. export type { LegendContinuousSizeOptions } from './legendContinuousSize';
  22. export type { TitleComponentOptions } from './title';
  23. export type { SliderXOptions } from './sliderX';
  24. export type { SliderYOptions } from './sliderY';