-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
27 lines (26 loc) · 1.35 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
export { LinearAxis as AxisLinear, ArcAxis as AxisArc } from './axis';
export { AxisX } from './axisX';
export { AxisY } from './axisY';
export { AxisRadar } from './axisRadar';
export { LegendCategory } from './legendCategory';
export { LegendContinuous } from './legendContinuous';
export { LegendContinuousBlock } from './legendContinuousBlock';
export { LegendContinuousBlockSize } from './legendContinuousBlockSize';
export { LegendContinuousSize } from './legendContinuousSize';
export { TitleComponent } from './title';
export { SliderX } from './sliderX';
export { SliderY } from './sliderY';
export { ScrollbarX } from './scrollbarX';
export { ScrollbarY } from './scrollbarY';
export { Legends } from './legends';
export type { AxisXOptions } from './axisX';
export type { AxisYOptions } from './axisY';
export type { LegendCategoryOptions } from './legendCategory';
export type { LegendContinuousOptions } from './legendContinuous';
export type { LegendContinuousBlockOptions } from './legendContinuousBlock';
export type { LegendContinuousBlockSizeOptions } from './legendContinuousBlockSize';
export type { LegendContinuousSizeOptions } from './legendContinuousSize';
export type { TitleComponentOptions } from './title';
export type { SliderXOptions } from './sliderX';
export type { SliderYOptions } from './sliderY';
export type { LegendsOptions } from './legends';