UNPKG

526 BTypeScriptView Raw
1/**
2 * Copyright (c) 2017 ~ present NAVER Corp.
3 * billboard.js project is licensed under the MIT license
4 */
5import {bb} from "./bb";
6
7export default bb;
8export as namespace bb;
9export {
10 bb,
11
12 // shapes modules
13 area,
14 areaLineRange,
15 areaSpline,
16 areaSplineRange,
17 areaStep,
18 bar,
19 bubble,
20 donut,
21 gauge,
22 line,
23 pie,
24 radar,
25 scatter,
26 spline,
27 step,
28
29 // interaction modules
30 selection,
31 subchart,
32 zoom
33} from "./bb";
34export * from "./axis";
35export * from "./chart";
36export * from "./options";
37export * from "./types";