igniteui-react-grids
Version:
Ignite UI React grid components.
23 lines (22 loc) • 946 B
TypeScript
import { IgrActiveNodeChangeEventArgsDetail } from "./igr-active-node-change-event-args-detail";
import { ActiveNodeChangeEventArgs as ActiveNodeChangeEventArgs_internal } from "./ActiveNodeChangeEventArgs";
import { ContentChildrenManager } from "igniteui-react-core";
/**
* Emitted when the active node is changed
*/
export declare class IgrActiveNodeChangeEventArgs {
protected createImplementation(): ActiveNodeChangeEventArgs_internal;
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): ActiveNodeChangeEventArgs_internal;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor();
protected _provideImplementation(i: any): void;
get detail(): IgrActiveNodeChangeEventArgsDetail;
set detail(v: IgrActiveNodeChangeEventArgsDetail);
}