import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { DilvantXmEditorLibModule } from 'dilvant-xm-editor-lib'; import { AppComponent } from './app.component'; @NgModule({ declarations: [AppComponent], imports: [BrowserModule, DilvantXmEditorLibModule], providers: [], bootstrap: [AppComponent], }) export class AppModule {}