ngx-graph-new
Version:
Modify the ngx-chart version is used
26 lines (25 loc) • 839 B
JavaScript
import { NgModule } from '@angular/core';
import { GraphComponent } from './graph.component';
import { ChartCommonModule } from 'ngx-charts-new';
import { MouseWheelDirective } from './mouse-wheel.directive';
export { GraphComponent };
var GraphModule = /** @class */ (function () {
function GraphModule() {
}
GraphModule.decorators = [
{ type: NgModule, args: [{
imports: [ChartCommonModule],
declarations: [
GraphComponent,
MouseWheelDirective
],
exports: [
GraphComponent,
MouseWheelDirective
]
},] },
];
return GraphModule;
}());
export { GraphModule };
//# sourceMappingURL=graph.module.js.map