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

37 lines (36 loc) 1.29 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 { ExcelExportColumnProps } from '../ExcelExportColumn.js'; import { AggregateResult, GroupResult } from '@progress/kendo-data-query'; import * as React from 'react'; /** * Represents the props that will be passed to the ExcelExportGroupFooter component when the template is rendered. */ export interface ExcelExportGroupFooterProps { /** * The field name by which the data is grouped. */ field: string; /** * The column configuration object for the current column. */ column: ExcelExportColumnProps; /** * The aggregate calculation results for the current group. */ aggregates: AggregateResult; /** * The group data and metadata for the current group. */ group: GroupResult; } /** * Represents the footer of the column group. */ export declare class ExcelExportGroupFooter extends React.PureComponent<ExcelExportGroupFooterProps> { }