New to Kendo UI for Angular? Start a free 30-day trial
EditorModule
Represents the NgModule definition for the Editor component.
ts
import { NgModule } from '@angular/core';
import { EditorModule } from '@progress/kendo-angular-editor';
import { BrowserModule } from "@angular/platform-browser";
import { AppComponent } from './app.component';
_@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, EditorModule],
bootstrap: [AppComponent]
})
export class AppModule {}