/**----------------------------------------------------------------------------------------- * Copyright © 2026 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; }