mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-17 11:50:22 +08:00
Merge pull request #4091 from Slimfit/patch-2
CircularInstance.addData was incorrect
This commit is contained in:
Vendored
+1
-1
@@ -113,7 +113,7 @@ interface LinearInstance extends ChartInstance {
|
||||
interface CircularInstance extends ChartInstance {
|
||||
getSegmentsAtEvent: (event: Event) => {}[];
|
||||
update: () => void;
|
||||
addData: (valuesArray: CircularChartData[], index: number) => void;
|
||||
addData: (valuesArray: CircularChartData, index?: number) => void;
|
||||
removeData: (index: number) => void;
|
||||
segments: Array<CircularChartData>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user