@progress/kendo-angular-excel-export
Version:
Kendo UI for Angular Excel Export component
22 lines (21 loc) • 915 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* The expected type for the ExcelExportComponent data.
*/
export interface ExcelExportData {
/**
* The exported data.
* If grouped, the data must be structured as described in the
* [`GroupResult`]({% slug api_kendo-data-query_groupresult %}) of the Kendo UI Data Query component.
*/
data?: any[];
/**
* The exported data groups.
* The groups must be compatible with the
* [`GroupDescriptor`]({% slug api_kendo-data-query_groupdescriptor %}) of the Kendo UI Data Query component.
*/
group?: any[];
}