dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_ResponsiveMenuModule cluster_ResponsiveMenuModule_declarations cluster_ResponsiveMenuModule_exports cluster_ResponsiveMenuModule_providers MenuItemDirective MenuItemDirective ResponsiveMenuModule ResponsiveMenuModule MenuItemDirective->ResponsiveMenuModule MenuToggleDirective MenuToggleDirective MenuToggleDirective->ResponsiveMenuModule OverflowContentDirective OverflowContentDirective OverflowContentDirective->ResponsiveMenuModule ResponsiveMenuComponent ResponsiveMenuComponent ResponsiveMenuComponent->ResponsiveMenuModule MenuItemDirective MenuItemDirective ResponsiveMenuModule->MenuItemDirective MenuToggleDirective MenuToggleDirective ResponsiveMenuModule->MenuToggleDirective OverflowContentDirective OverflowContentDirective ResponsiveMenuModule->OverflowContentDirective ResponsiveMenuComponent ResponsiveMenuComponent ResponsiveMenuModule->ResponsiveMenuComponent OverflowControl OverflowControl OverflowControl->ResponsiveMenuModule
import { NgModule } from "@angular/core";
import { MenuItemDirective } from "./directives/menu-item.directive";
import { ResponsiveMenuComponent } from "./components/responsive-menu.component";
import { CommonModule } from "@angular/common";
import { OverflowContentDirective } from "./directives/overflow.directive";
import { OverflowControl } from "./provider/overflow.control";
import { MenuToggleDirective } from "./directives/menu-toggle.directive";

@NgModule({
    imports: [
        CommonModule
    ],
    exports: [
        MenuItemDirective,
        MenuToggleDirective,
        OverflowContentDirective,
        ResponsiveMenuComponent,
    ],
    providers: [ OverflowControl ],
    declarations: [
        MenuItemDirective,
        MenuToggleDirective,
        OverflowContentDirective,
        ResponsiveMenuComponent,
    ]
})
export class ResponsiveMenuModule {
}

result-matching ""

    No results matching ""