[Highcharts] AxisLabelFormatterOptions property "value" is incorrectly typed as a number (#22697)

* Add contextMenu event to Simulate on TestUtils

* Reverting format on save

* s.ts

* Should actually be an any, not number or string.
This commit is contained in:
Justin Warner
2018-01-05 15:44:06 -08:00
committed by Mohamed Hegazy
parent 933fafbb1f
commit 0f9dda57a5
+1 -1
View File
@@ -56,7 +56,7 @@ declare namespace Highcharts {
}
interface AxisLabelFormatterOptions {
value: number;
value: any;
isFirst: number;
isLast: number;
}