Merge pull request #7985 from Successful/master

Enables ES6 module loading.
This commit is contained in:
Masahiro Wakame
2016-02-07 02:03:06 +09:00
+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;
}