UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

32 lines (31 loc) 812 B
import { GroupData as GroupData_internal } from "./GroupData"; /** * Object used to store group information for group headers. */ export declare class IgcGroupData { protected createImplementation(): GroupData_internal; protected _implementation: any; /** * @hidden */ get i(): GroupData_internal; private onImplementationCreated; constructor(); protected _provideImplementation(i: any): void; /** * The grouping key. */ get groupName(): string; set groupName(v: string); /** * The group value. */ get groupValue(): any; set groupValue(v: any); /** * The value as formatted text. */ get formattedText(): string; set formattedText(v: string); findByName(name: string): any; }