import { NgModule} from '@angular/core'; import { CommonModule } from '@angular/common' import { RouterModule } from '@angular/router'; import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; import { FormsModule } from '@angular/forms'; import { Graph3DComponent } from './graph3D.component'; import { AnimationControlComponent } from '../animation-control/animation-control.component'; import { ClosePopoverOnOutsideClickDirective } from '../../../shared/utils/closePopoverDirective'; @NgModule({ imports: [FormsModule, RouterModule, CommonModule, NgbModule], declarations: [ AnimationControlComponent, Graph3DComponent, ClosePopoverOnOutsideClickDirective ], entryComponents: [ AnimationControlComponent ], exports: [Graph3DComponent] }) export class Graph3DModule { }