UNPKG

pipeline-builder-demo

Version:
47 lines (44 loc) 1.84 kB
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { HttpModule, JsonpModule } from '@angular/http'; import { CodemirrorModule } from 'ng2-codemirror'; import { ClipboardModule } from 'ngx-clipboard'; import { AppComponent } from './app.component'; import { FooterComponent } from './footer/footer.component'; import { GraphicalEditorComponent } from './graphical-editor/graphical-editor.component'; import { CodeEditorComponent } from './right-editor/code-editor/code-editor.component'; import { ToolPanelComponent } from './right-editor/tool-panel/tool-panel.component'; import { ErrorPanelComponent } from './right-editor/code-editor/error-panel/error-panel.component'; import {PipelineDataService} from './pipeline-data.service'; import {SharedModule} from './shared/shared.module'; import { ToolOptionDialogComponent } from './graphical-editor/tool-option-dialog/tool-option-dialog.component'; import { TableEditorComponent } from './graphical-editor/tool-option-dialog/table-editor/table-editor.component'; import { RightEditorComponent } from './right-editor/right-editor.component'; import { ResizerComponent } from './right-editor/resizer/resizer.component'; @NgModule({ declarations: [ AppComponent, FooterComponent, GraphicalEditorComponent, CodeEditorComponent, ToolPanelComponent, ErrorPanelComponent, ToolOptionDialogComponent, TableEditorComponent, RightEditorComponent, ResizerComponent ], imports: [ BrowserModule, FormsModule, HttpModule, JsonpModule, CodemirrorModule, ClipboardModule, SharedModule ], providers: [PipelineDataService], bootstrap: [AppComponent] }) export class AppModule { }