import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { NetworkGraphComponent } from './network-graph.component'; import { NodeComponent } from './node/node.component'; import { D3Service } from '../../../services/d3.service'; import { LoadingModule } from '../../common/loading/loading.module'; import { D3Module } from '../../../directives/d3/d3.module'; import { NetworkTooltipComponent } from './network-tooltip/network-tooltip.component'; import { LinkModule } from './link/link.module'; @NgModule({ declarations: [NetworkGraphComponent, NodeComponent, NetworkTooltipComponent], imports: [CommonModule, LoadingModule, D3Module, LinkModule], providers: [D3Service], exports: [NetworkGraphComponent, NodeComponent], }) export class NetworkModule {}