UNPKG

@illgrenoble/ngx-remote-desktop

Version:

ngx-remote-desktop is an Angular2+ module for connecting to a remote desktop using the guacamole protocol

46 lines (41 loc) 1.28 kB
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { NgxRemoteDesktopModule } from '../../src'; import { HttpModule } from '@angular/http'; import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; import { FormsModule } from '@angular/forms'; import { MatSnackBarModule } from '@angular/material'; import { CodemirrorModule } from '@ctrl/ngx-codemirror'; import 'codemirror/mode/javascript/javascript'; import 'codemirror/mode/markdown/markdown'; import { ClipboardModalComponent } from './components'; import { OverlayContainer, FullscreenOverlayContainer } from '@angular/cdk/overlay'; import { RouterModule } from '@angular/router'; import { FileSizePipe } from './pipes'; @NgModule({ declarations: [ AppComponent, ClipboardModalComponent, FileSizePipe ], imports: [ BrowserModule, NgxRemoteDesktopModule, HttpModule, MatSnackBarModule, CodemirrorModule, FormsModule, RouterModule.forRoot([]), NgbModule.forRoot() ], providers: [{provide: OverlayContainer, useClass: FullscreenOverlayContainer}, ], entryComponents: [ ClipboardModalComponent ], bootstrap: [AppComponent] }) export class AppModule { }