@progress/kendo-react-excel-export
Version:
React Excel export helps you export and save data to Excel files and customize or filter the output. KendoReact Excel Export package
22 lines (21 loc) • 773 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { WorkbookOptions } from '@progress/kendo-ooxml';
import { ExcelExportProps } from '../ExcelExport.js';
/**
* @hidden
*/
export declare const workbookOptions: (options: ExcelExportProps) => WorkbookOptions;
/**
* @hidden
*/
export declare const toDataURL: (options: WorkbookOptions) => Promise<string>;
/**
* @hidden
*/
export declare const isWorkbookOptions: (value: any) => boolean;