File size: 288 Bytes
d61b9c7
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import * as chartjs from "chart.js";

// Because there's no data point type exported by the
// main type declaration for chart.js, we have our own.

export interface DataPoint {
    chart?: object;
    dataIndex?: number;
    dataset?: chartjs.ChartDataSets;
    datasetIndex?: number;
}