fabric8-analytics-dependency-editor-jyas
Version:
36 lines • 1.34 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';
import { AlertLoaderModule } from '../alert-loader/alert-loader.module';
import { TooltipModule } from 'ngx-bootstrap/tooltip/tooltip.module';
var AlertBoxModule = /** @class */ (function () {
function AlertBoxModule() {
}
AlertBoxModule.decorators = [
{ type: NgModule, args: [{
imports: [
AlertLoaderModule,
TooltipModule.forRoot(),
CommonModule,
HttpModule,
FormsModule,
ChartModule
],
declarations: [
AlertBoxComponent
],
exports: [
AlertBoxComponent
],
providers: []
},] },
];
/** @nocollapse */
AlertBoxModule.ctorParameters = function () { return []; };
return AlertBoxModule;
}());
export { AlertBoxModule };
//# sourceMappingURL=alert-box.module.js.map