dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_PerformanceModule cluster_PerformanceModule_declarations cluster_PerformanceModule_imports cluster_PerformanceModule_providers PerformanceComponent PerformanceComponent PerformanceModule PerformanceModule PerformanceComponent->PerformanceModule SearchModule SearchModule SearchModule->PerformanceModule SharedModule SharedModule SharedModule->PerformanceModule WidgetModule WidgetModule WidgetModule->PerformanceModule PerformanceService PerformanceService PerformanceService->PerformanceModule

File

src/app/apm/performance/performance.module.ts

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { HttpClientModule } from '@angular/common/http';
import { NgxChartsModule } from '@swimlane/ngx-charts';

import { SharedModule } from '../../shared/shared.module';
import { SearchModule } from '../../component/search';
import { WidgetModule } from '../../component/widget';

import { PerformanceComponent } from './performance.component';
import { PerformanceService } from './performance.service';
import { DetailComponent } from './detail/detail.component';

@NgModule({
  imports: [
    CommonModule,
    HttpClientModule,
    NgxChartsModule,
    SharedModule,
    SearchModule,
    WidgetModule
  ],
  declarations: [PerformanceComponent, DetailComponent],
  providers: [PerformanceService]
})
export class PerformanceModule {}

result-matching ""

    No results matching ""