/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Represents the expected type for the `ExcelExportComponent` data. * * Use this interface to specify the data and groups for export. */ export interface ExcelExportData { /** * Specifies the exported data. * When the data is grouped, structure it as described by the * [`GroupResult`](https://www.telerik.com/kendo-angular-ui/components/data-query/api/groupresult) option of the Kendo UI Data Query component. */ data?: any[]; /** * Specifies the exported data groups. * The groups must match the * [`GroupDescriptor`](https://www.telerik.com/kendo-angular-ui/components/data-query/api/groupdescriptor) option of the Kendo UI Data Query component. */ group?: any[]; }