igniteui-react-grids
Version:
Ignite UI React grid components.
23 lines (22 loc) • 878 B
TypeScript
import { IgrGridRowEventArgsDetail } from "./igr-grid-row-event-args-detail";
import { GridRowEventArgs as GridRowEventArgs_internal } from "./GridRowEventArgs";
import { ContentChildrenManager } from "igniteui-react-core";
/**
* Represents an event argument related to grid row interactions.
*/
export declare class IgrGridRowEventArgs {
protected createImplementation(): GridRowEventArgs_internal;
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): GridRowEventArgs_internal;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor();
protected _provideImplementation(i: any): void;
get detail(): IgrGridRowEventArgsDetail;
set detail(v: IgrGridRowEventArgsDetail);
}