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

36 lines (35 loc) 1.2 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 { AggregateResult, GroupResult } from '@progress/kendo-data-query'; import * as React from 'react'; /** * Represents the props that will be passed to the ExcelExportGroupHeader component when the template is rendered. */ export interface ExcelExportGroupHeaderProps { /** * The field name by which the data is grouped. */ field: string; /** * The aggregate calculation results for the current group. */ aggregates: AggregateResult; /** * The group data and metadata for the current group. */ group: GroupResult; /** * The value that identifies the current group. */ value: any; } /** * Represents the header of the column group. */ export declare class ExcelExportGroupHeader extends React.PureComponent<ExcelExportGroupHeaderProps> { }