New to Kendo UI for Angular? Start a free 30-day trial
WindowModule
Represents the NgModule
definition for the Window component. Imports WindowModule
into the
root module
of your application or into any other sub-module that will use the Window component.
ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { WindowModule } from '@progress/kendo-angular-window';
import { AppComponent } from './app.component';
@NgModule({
bootstrap: [AppComponent],
declarations: [AppComponent],
imports: [BrowserModule, WindowModule]
})
export class AppModule {
}