-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
65 lines (52 loc) · 1.48 KB
/
index.ts
File metadata and controls
65 lines (52 loc) · 1.48 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import './styles.css';
export {
default as ColorScale,
type Props as ColorScaleProps,
} from './components/ColorScale';
export {
default as KPIs,
type Props as KPIsProps,
} from './components/KPIs';
export {
default as Timeline,
type Props as TimelineProps,
} from './components/Timeline';
export {
default as NumericBarChart,
type Props as NumericBarChartProps,
} from './components/NumericBarChart';
export {
default as TemporalBarChart,
type Props as TemporalBarChartProps,
} from './components/TemporalBarChart';
export {
default as CategoricalBarChart,
type Props as CategoricalBarChartProps,
} from './components/CategoricalBarChart';
export {
default as Map,
type Props as MapProps,
} from './components/Map';
export {
type HeatMapLayerProperty,
type Props as HeatMapLayerProps,
} from './components/Map/Layers/HeatmapLayer';
export {
type Props as LineLayerProps,
} from './components/Map/Layers/LineLayer';
export {
type Props as MapboxLayerProps,
} from './components/Map/Layers/MapboxLayer';
export {
type Props as TileLayerProps,
} from './components/Map/Layers/TileLayer';
export {
type Symbols,
type ScaleTypes as SymbolLayerScaleTypes,
type ScalingTechnique as SymbolLayerScalingTechnique,
type Props as SymbolLayerProps,
} from './components/Map/Layers/SymbolLayer';
export {
default as NumericLineChart,
type Props as NumericLineChartProps,
} from './components/NumericLineChart';