fabric8-analytics-dependency-editor-jyas
Version:
39 lines • 1.48 kB
JavaScript
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { AccordionModule } from 'ngx-bootstrap';
import { HttpModule } from '@angular/http';
import { FormsModule } from '@angular/forms';
import { ListElementModule } from '../list-element/list-element.module';
import { InsightComponent } from './insights.component';
import { TooltipModule } from 'ngx-bootstrap/tooltip/tooltip.module';
import { DependencyEditorService } from '../shared/dependency-editor.service';
var InsightModule = /** @class */ (function () {
function InsightModule() {
}
InsightModule.decorators = [
{ type: NgModule, args: [{
imports: [
CommonModule,
AccordionModule.forRoot(),
TooltipModule.forRoot(),
HttpModule,
FormsModule,
ListElementModule
],
declarations: [
InsightComponent
],
exports: [
InsightComponent
],
providers: [
DependencyEditorService
]
},] },
];
/** @nocollapse */
InsightModule.ctorParameters = function () { return []; };
return InsightModule;
}());
export { InsightModule };
//# sourceMappingURL=insights.module.js.map