dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_UtilityModule cluster_UtilityModule_imports cluster_UtilityModule_declarations cluster_UtilityModule_exports cluster_UtilityModule_providers FocusDirective FocusDirective UtilityModule UtilityModule FocusDirective->UtilityModule LoginFormComponent LoginFormComponent LoginFormComponent->UtilityModule SignupFormComponent SignupFormComponent SignupFormComponent->UtilityModule TabComponent TabComponent TabComponent->UtilityModule TabsComponent TabsComponent TabsComponent->UtilityModule FocusDirective FocusDirective UtilityModule->FocusDirective LoginFormComponent LoginFormComponent UtilityModule->LoginFormComponent SignupFormComponent SignupFormComponent UtilityModule->SignupFormComponent TabComponent TabComponent UtilityModule->TabComponent TabsComponent TabsComponent UtilityModule->TabsComponent IoModule IoModule IoModule->UtilityModule KeycommandsService KeycommandsService KeycommandsService->UtilityModule
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { RouterModule } from '@angular/router';
import { IoModule } from '../io/io.module';
import { FocusDirective } from './focus/focus.directive';
import { LoginFormComponent } from './login-form/login-form.component';
import { SignupFormComponent } from './signup-form/signup-form.component';
import { TabComponent } from './tab/tab.component';
import { TabsComponent } from './tabs/tabs.component';
import { KeycommandsService } from './keycommands/keycommands.service';

@NgModule({
  entryComponents: [],
  declarations: [TabsComponent, TabComponent, LoginFormComponent, SignupFormComponent, FocusDirective],
  imports: [FormsModule, ReactiveFormsModule, IoModule, CommonModule, RouterModule],
  exports: [
    /* FormsModule,
    ReactiveFormsModule,
    IoModule,
    */
    TabsComponent,
    TabComponent,
    LoginFormComponent,
    SignupFormComponent,
    FocusDirective,
    RouterModule,
  ],
  providers: [KeycommandsService],
})
export class UtilityModule {}

result-matching ""

    No results matching ""