Added missing optional parameter

This commit is contained in:
Erik O'Leary
2016-01-19 14:37:59 -06:00
parent 6659791e2e
commit e6231f5948
+1 -1
View File
@@ -107,7 +107,7 @@ interface LinearInstance extends ChartInstance {
getPointsAtEvent: (event: Event) => PointsAtEvent[];
update: () => void;
addData: (valuesArray: number[], label: string) => void;
removeData: () => void;
removeData: (index?: number) => void;
}
interface CircularInstance extends ChartInstance {