UNPKG

@progress/kendo-angular-excel-export

Version:

Kendo UI for Angular Excel Export component

24 lines (23 loc) 1.02 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 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`]({% slug api_kendo-data-query_groupresult %}) option of the Kendo UI Data Query component. */ data?: any[]; /** * Specifies the exported data groups. * The groups must match the * [`GroupDescriptor`]({% slug api_kendo-data-query_groupdescriptor %}) option of the Kendo UI Data Query component. */ group?: any[]; }