@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) • 885 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 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](slug:track_changes_grid).
*
* The possible values are:
* * [`DataItem`]({% slug api_grid_dataitem %}).
* * [`GroupItem`]({% slug api_grid_groupitem %}).
* * [`GroupFooterItem`]({% slug api_grid_groupfooteritem %}).
*/
export type GridItem = DataItem | GroupItem | GroupFooterItem;