dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_BehaviorModule cluster_BehaviorModule_declarations cluster_BehaviorModule_imports cluster_BehaviorModule_providers BehaviorComponent BehaviorComponent BehaviorModule BehaviorModule BehaviorComponent->BehaviorModule BehaviorDetailComponent BehaviorDetailComponent BehaviorDetailComponent->BehaviorModule SearchModule SearchModule SearchModule->BehaviorModule SharedModule SharedModule SharedModule->BehaviorModule BehaviorService BehaviorService BehaviorService->BehaviorModule

File

src/app/apm/behavior/behavior.module.ts

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { HttpClientModule } from '@angular/common/http';
import { SharedModule } from '../../shared/shared.module';
import { SearchModule } from '../../component/search';

import { BehaviorComponent } from './behavior.component';
import { BehaviorService } from './behavior.service';
import { BehaviorDetailComponent } from './detail/detail.component';

@NgModule({
  imports: [CommonModule, HttpClientModule, SharedModule, SearchModule],
  declarations: [BehaviorComponent, BehaviorDetailComponent],
  providers: [BehaviorService]
})
export class BehaviorModule {}

result-matching ""

    No results matching ""