diff --git a/types/highcharts/index.d.ts b/types/highcharts/index.d.ts index 914fb83f96..f8ae716c13 100644 --- a/types/highcharts/index.d.ts +++ b/types/highcharts/index.d.ts @@ -1455,6 +1455,11 @@ declare namespace Highcharts { * @since 3.0.8 */ drillup?(event: Event): void; + /** + * Fires after drilling up from all drilldown series. + * @since 4.2.4 + */ + drillupall?(event: Event): void; /** * Fires when the chart is finished loading. One parameter, event, is passed to the function. This contains common * event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. diff --git a/types/highcharts/test/index.ts b/types/highcharts/test/index.ts index 5ddc56420c..a17ee094c2 100644 --- a/types/highcharts/test/index.ts +++ b/types/highcharts/test/index.ts @@ -242,6 +242,7 @@ function test_ChartOptions() { click: () => { }, drilldown: () => { }, drillup: () => { }, + drillupall: () => { }, load: () => { }, redraw: () => { }, selection: () => { }