UNPKG

@progress/kendo-angular-grid

Version:

Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.

31 lines (30 loc) 897 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { GroupResult } from '@progress/kendo-data-query'; /** * Represents a group item in the Grid. */ export interface GroupItem { /** * Sets the type of the Grid item. */ type: 'group'; /** * Holds the group data. */ data: GroupResult; /** * Sets the index of the group item. */ index: string; /** * Sets the nesting level of the group. The root group is at level 0. */ level: number; /** * Holds the parent group item. */ parentGroup: GroupItem; }