UNPKG

metadata-editor-workspace

Version:

Metadata Editor Workspace module for ME-Core Powered by Assyst

23 lines (21 loc) 661 B
import { NgModule, ModuleWithProviders } from '@angular/core'; import { CommonModule } from '@angular/common'; import { ToolBarComponent } from './toolbar.component'; import { MaterialModule } from '@angular/material'; @NgModule({ imports: [ CommonModule, MaterialModule.forRoot() ], providers: [], declarations: [ToolBarComponent], exports: [ToolBarComponent] }) /* * Titlebar module ***************************************************************/ export class ToolBarModule { forRoot():ModuleWithProviders { return { ngModule: ToolBarModule, providers: [] } } }