fabric8-analytics-dep-editor
Version:
32 lines • 1.11 kB
JavaScript
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { HttpModule } from '@angular/http';
import { FormsModule } from '@angular/forms';
import { AlertBoxComponent } from './alert-box.component';
import { ChartModule } from '../utils/chart/chart.module';
var AlertBoxModule = /** @class */ (function () {
function AlertBoxModule() {
}
AlertBoxModule.decorators = [
{ type: NgModule, args: [{
imports: [
CommonModule,
HttpModule,
FormsModule,
ChartModule
],
declarations: [
AlertBoxComponent
],
exports: [
AlertBoxComponent
],
providers: []
},] },
];
/** @nocollapse */
AlertBoxModule.ctorParameters = function () { return []; };
return AlertBoxModule;
}());
export { AlertBoxModule };
//# sourceMappingURL=alert-box.module.js.map