New to Kendo UI for Angular? Start a free 30-day trial
EditorModule
Updated on Jun 13, 2025
Represents the NgModule for the Editor component.
Use this module to import the Editor and its related directives and services into your NgModule-based Angular application.
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 {}