fabric8-planner
Version:
A planner front-end for Fabric8.
20 lines • 820 B
JavaScript
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { ClickOutModule } from '../clickout/clickout.module';
import { SelectDropdownComponent } from './select-dropdown.component';
var SelectDropdownModule = /** @class */ (function () {
function SelectDropdownModule() {
}
SelectDropdownModule.decorators = [
{ type: NgModule, args: [{
declarations: [SelectDropdownComponent],
imports: [CommonModule, ClickOutModule],
exports: [SelectDropdownComponent]
},] },
];
/** @nocollapse */
SelectDropdownModule.ctorParameters = function () { return []; };
return SelectDropdownModule;
}());
export { SelectDropdownModule };
//# sourceMappingURL=select-dropdown.module.js.map