UNPKG

@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

34 lines (33 loc) 1.16 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { CellOptions } from './CellOptionsInterface'; import { ExcelExportColumnProps } from '../ExcelExportColumn.js'; /** * @hidden */ export declare const toExporterColumns: (sourceColumns?: ExcelExportColumnProps[]) => ExporterColumn[]; /** * @hidden */ export declare class ExporterColumn { title?: string; field?: string; hidden?: boolean; locked?: boolean; width?: number; columns: ExporterColumn[] | null; groupHeaderTemplate: any; groupFooterTemplate: any; footerTemplate: any; headerCellOptions?: CellOptions; cellOptions?: CellOptions; groupHeaderCellOptions?: CellOptions; groupFooterCellOptions?: CellOptions; footerCellOptions?: CellOptions; constructor(column: ExcelExportColumnProps, columnIndex?: number); }