From 0f9dda57a57f34192dfd5e57f4de44eac8643bd1 Mon Sep 17 00:00:00 2001 From: Justin Warner Date: Fri, 5 Jan 2018 15:44:06 -0800 Subject: [PATCH] [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. --- types/highcharts/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/highcharts/index.d.ts b/types/highcharts/index.d.ts index 3d01d66443..917ab479ea 100644 --- a/types/highcharts/index.d.ts +++ b/types/highcharts/index.d.ts @@ -56,7 +56,7 @@ declare namespace Highcharts { } interface AxisLabelFormatterOptions { - value: number; + value: any; isFirst: number; isLast: number; }