Enables ES6 module loading.

This commit is contained in:
Stefan Karlsson
2016-02-05 16:11:11 +01:00
parent 4ec3c5bf29
commit c64873177e
+13
View File
@@ -6285,3 +6285,16 @@ interface JQuery {
**/
highcharts(options: HighchartsOptions, callback: (chart: HighchartsChartObject) => void): JQuery;
}
/**
* Enabling the usage of ES6 module loading.
*/
declare var Highcharts: HighchartsStatic;
/**
* Declaration for ES6 module loading.
*/
declare module "highcharts" {
export = Highcharts;
}