UNPKG

@progress/kendo-angular-grid

Version:

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

32 lines (31 loc) 943 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'; import { GroupItem } from './group-item.interface'; /** * Represents a group footer item of the Grid. */ export interface GroupFooterItem { /** * The type of the Grid item. */ type: 'footer'; /** * The group data. */ data: GroupResult; /** * The index of the group item. */ groupIndex: string; /** * The nesting level of the group. The root group is at level 0. */ level: number; /** * The current footer group item. */ group: GroupItem; }