@progress/kendo-angular-grid
Version:
Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.
17 lines (16 loc) • 1.06 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { DataItem } from './data-item.interface';
import { GroupItem } from './group-item.interface';
import { GroupFooterItem } from './group-footer-item.interface';
/**
* Represents the item that the Grid uses to track changes. [See example](https://www.telerik.com/kendo-angular-ui/components/grid/editing/track-changes).
*
* The possible values are:
* * [`DataItem`](https://www.telerik.com/kendo-angular-ui/components/grid/api/dataitem).
* * [`GroupItem`](https://www.telerik.com/kendo-angular-ui/components/grid/api/groupitem).
* * [`GroupFooterItem`](https://www.telerik.com/kendo-angular-ui/components/grid/api/groupfooteritem).
*/
export type GridItem = DataItem | GroupItem | GroupFooterItem;