Select Git revision
typings.d.ts
plotter.module.ts 491 B
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 { PlotterComponent } from './plotter.component';
@NgModule({
imports: [FormsModule, RouterModule, CommonModule, NgbModule],
declarations: [PlotterComponent],
exports: [PlotterComponent]
})
export class PlotterModule { }