-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.js
More file actions
32 lines (21 loc) · 930 Bytes
/
index.js
File metadata and controls
32 lines (21 loc) · 930 Bytes
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
/*
* Dboxjs
*
* You can import other modules here, including external packages. When
* bundling using rollup you can mark those modules as external and have them
* excluded or, if they have a jsnext:main entry in their package.json (like
* this package does), let rollup bundle them into your dist file.
*/
/* Core */
export { default as chart } from './lib/chart';
/* Chart modules */
export { default as bars } from '@dboxjs/bars';
export { default as distro } from '@dboxjs/distro';
export { default as heatmap } from '@dboxjs/heatmap';
export { default as leaflet } from '@dboxjs/leaflet';
export { default as map } from '@dboxjs/map';
export { default as radar } from '@dboxjs/radar';
export { default as scatter } from '@dboxjs/scatter';
export { default as spineplot } from '@dboxjs/spineplot';
export { default as timeline } from '@dboxjs/timeline';
export { default as treemap } from '@dboxjs/treemap';