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