UNPKG

@swimlane/ngx-charts

Version:

Declarative Charting Framework for Angular2 and beyond!

30 lines 1.07 kB
import { NgModule } from '@angular/core'; import { ChartCommonModule } from '../common/chart-common.module'; import { LineComponent } from './line.component'; import { LineChartComponent } from './line-chart.component'; import { LineSeriesComponent } from './line-series.component'; export { LineComponent, LineChartComponent, LineSeriesComponent }; var LineChartModule = (function () { function LineChartModule() { } return LineChartModule; }()); export { LineChartModule }; LineChartModule.decorators = [ { type: NgModule, args: [{ imports: [ChartCommonModule], declarations: [ LineComponent, LineChartComponent, LineSeriesComponent ], exports: [ LineComponent, LineChartComponent, LineSeriesComponent ] },] }, ]; /** @nocollapse */ LineChartModule.ctorParameters = function () { return []; }; //# sourceMappingURL=line-chart.module.js.map