igniteui-react-grids
Version:
Ignite UI React grid components.
26 lines (25 loc) • 948 B
TypeScript
import { IgrGridState } from "./igr-grid-state";
import { GridStateCollection as GridStateCollection_internal } from "./GridStateCollection";
import { ContentChildrenManager } from "igniteui-react-core";
export declare class IgrGridStateCollection {
protected createImplementation(): GridStateCollection_internal;
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): GridStateCollection_internal;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor();
protected _provideImplementation(i: any): void;
get id(): string;
set id(v: string);
get parentRowID(): any;
set parentRowID(v: any);
get state(): IgrGridState;
set state(v: IgrGridState);
findByName(name: string): any;
setNativeElement(element: any): void;
}