igniteui-react-grids
Version:
Ignite UI React grid components.
23 lines (22 loc) • 1.06 kB
TypeScript
import { IgrColumnGroupDescriptionCollection } from "./igr-column-group-description-collection";
import { GridGroupDescriptionsChangedEventArgs as GridGroupDescriptionsChangedEventArgs_internal } from "./GridGroupDescriptionsChangedEventArgs";
import { ContentChildrenManager } from "igniteui-react-core";
/**
* Information about the current grouping applied to the grid.
*/
export declare class IgrGridGroupDescriptionsChangedEventArgs {
protected createImplementation(): GridGroupDescriptionsChangedEventArgs_internal;
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): GridGroupDescriptionsChangedEventArgs_internal;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor();
protected _provideImplementation(i: any): void;
get groupDescriptions(): IgrColumnGroupDescriptionCollection;
set groupDescriptions(v: IgrColumnGroupDescriptionCollection);
}