igniteui-react-grids
Version:
Ignite UI React grid components.
22 lines (21 loc) • 858 B
TypeScript
import { IgrRowType } from "./igr-row-type";
import { GridRowTemplateContext as GridRowTemplateContext_internal } from "./GridRowTemplateContext";
import { ContentChildrenManager } from "igniteui-react-core";
export declare class IgrGridRowTemplateContext {
protected createImplementation(): GridRowTemplateContext_internal;
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): GridRowTemplateContext_internal;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor();
protected _provideImplementation(i: any): void;
get implicit(): IgrRowType;
set implicit(v: IgrRowType);
findByName(name: string): any;
setNativeElement(element: any): void;
}