import { NgModule } from '@angular/core'; import { FDropdownDirective } from './f-dropdown.directive'; import { FDropdownMenuDirective } from './f-dropdown-menu.directive'; import { FDropdownToggleDirective } from './f-dropdown-toggle.directive'; const _DROPDOWN_DIRECTIVES = [ FDropdownDirective, FDropdownMenuDirective, FDropdownToggleDirective ]; @NgModule({ declarations: _DROPDOWN_DIRECTIVES, exports: _DROPDOWN_DIRECTIVES }) export class FDropdownDirectiveTypeModule { }