mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-07 16:30:12 +08:00
Merge pull request #7985 from Successful/master
Enables ES6 module loading.
This commit is contained in:
Vendored
+13
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user