my-test123
Version:
A planner front-end for Fabric8.
37 lines • 1.51 kB
JavaScript
import { RouterModule } from '@angular/router';
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { WidgetsModule, } from 'ngx-widgets';
import { CollapseModule } from 'ngx-bootstrap';
import { ModalModule } from 'ngx-modal';
import { GroupTypesModule } from '../group-types-panel/group-types-panel.module';
import { IterationModule } from '../iterations-panel/iterations-panel.module';
import { TypeaheadDropdown } from './typeahead-dropdown.component';
import { TruncateModule } from 'ng2-truncate';
var TypeaheadDropDownModule = /** @class */ (function () {
function TypeaheadDropDownModule() {
}
TypeaheadDropDownModule.decorators = [
{ type: NgModule, args: [{
imports: [
CollapseModule,
CommonModule,
GroupTypesModule,
IterationModule,
ModalModule,
RouterModule,
TruncateModule,
WidgetsModule
],
declarations: [
TypeaheadDropdown
],
exports: [TypeaheadDropdown]
},] },
];
/** @nocollapse */
TypeaheadDropDownModule.ctorParameters = function () { return []; };
return TypeaheadDropDownModule;
}());
export { TypeaheadDropDownModule };
//# sourceMappingURL=typeahead-dropdown.module.js.map