UNPKG

447 BTypeScriptView Raw
1/**
2 * Copyright (c) 2017 ~ present NAVER Corp.
3 * billboard.js project is licensed under the MIT license
4 */
5import { Chart } from "./chart";
6import { ChartOptions } from "./options";
7
8export const bb: {
9 /**
10 * Generate chart
11 * @param options Chart generation options
12 */
13 generate(options: ChartOptions): Chart;
14
15 /**
16 * Version information
17 */
18 version: string;
19
20 /**
21 * An array containing instance created
22 */
23 instance: Chart[];
24};