/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Defines the data type that the ListView expects * ([see data binding examples](https://www.telerik.com/kendo-angular-ui/components/listview/paging)). */ export interface ListViewDataResult { /** * Specifies the data that the ListView renders. */ data: any[]; /** * Specifies the total number of available records. */ total: number; }