@syncfusion/ej2-schedule
Version: 
Flexible scheduling library with more built-in features and enhanced customization options similar to outlook and google calendar, allowing the users to plan and manage their appointments with efficient data-binding support.
15 lines (14 loc) • 407 B
TypeScript
import { Schedule } from '../base/schedule';
import { ExportOptions } from '../base/interface';
/**
 * Excel Export Module
 */
export declare class ExcelExport {
    private parent;
    constructor(parent: Schedule);
    initializeExcelExport(excelExportOptions?: ExportOptions): void;
    private processWorkbook;
    private getExportColumns;
    protected getModuleName(): string;
    destroy(): void;
}