billboard.js
Version:
Re-usable easy interface JavaScript chart library, based on D3 v4+
31 lines (26 loc) • 831 B
text/typescript
/**
* Copyright (c) 2017 ~ present NAVER Corp.
* billboard project is licensed under the MIT license
*/
import {canvas} from "./config/resolver/canvas";
import {category} from "./config/resolver/category";
import {exportApi} from "./config/resolver/export";
import {flow} from "./config/resolver/flow";
import {grid} from "./config/resolver/grid";
import * as interaction from "./config/resolver/interaction";
import {regions} from "./config/resolver/regions";
import * as shape from "./config/resolver/shape";
// extends shape modules
Object.keys(shape)
.forEach(v => shape[v]());
// extends interaction modules
Object.keys(interaction)
.forEach(v => interaction[v]());
// always include optional API modules in UMD bundle
exportApi();
flow();
grid();
regions();
category();
canvas();
export {bb, default} from "./core";