forked from Bigous/ng2-highcharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
21 lines (21 loc) · 828 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { NgModule } from '@angular/core';
import { Ng2Highcharts } from './src/ng2-highcharts';
import { Ng2Highmaps } from './src/ng2-highmaps';
import { Ng2Highstocks } from './src/ng2-highstocks';
export * from './src/ng2-highcharts';
export * from './src/ng2-highstocks';
export * from './src/ng2-highmaps';
var Ng2HighchartsModule = /** @class */ (function () {
function Ng2HighchartsModule() {
}
Ng2HighchartsModule.decorators = [
{ type: NgModule, args: [{
declarations: [Ng2Highcharts, Ng2Highmaps, Ng2Highstocks],
exports: [Ng2Highcharts, Ng2Highmaps, Ng2Highstocks]
},] },
];
/** @nocollapse */
Ng2HighchartsModule.ctorParameters = function () { return []; };
return Ng2HighchartsModule;
}());
export { Ng2HighchartsModule };