/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { Observable } from "rxjs"; /** * The expected type of result for the TreeList Excel export [`fetchData` function](https://www.telerik.com/kendo-angular-ui/components/treelist/api/excelcomponent#fetchdata). */ export interface ExcelExportData { /** * The root data to export. */ data: any[] | Observable; /** * Returns the children for an item. */ fetchChildren: any; /** * Indicates if a particular item has children. */ hasChildren: any; }