@progress/kendo-angular-listview
Version:
Kendo UI Angular listview component
19 lines (18 loc) • 691 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 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]({% slug paging_listview %})).
*/
export interface ListViewDataResult {
/**
* Specifies the data that the ListView renders.
*/
data: any[];
/**
* Specifies the total number of available records.
*/
total: number;
}