igniteui-react-core
Version:
Ignite UI React Core.
31 lines (30 loc) • 1.09 kB
TypeScript
import { DataSourceRowExpansionChangedEventArgs as DataSourceRowExpansionChangedEventArgs_internal } from "./DataSourceRowExpansionChangedEventArgs";
import { ContentChildrenManager } from "./ContentChildrenManager";
/**
* Provides information about row expansion or collapse.
*/
export declare class IgrDataSourceRowExpansionChangedEventArgs {
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): DataSourceRowExpansionChangedEventArgs_internal;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor();
protected _provideImplementation(i: any): void;
/**
* The index of the row being expanded or collapsed.
*/
get rowIndex(): number;
/**
* The previous state of the row. True is expanded, False is collapsed.
*/
get oldState(): boolean;
/**
* The new state of the row. True is expanded, False is collapsed.
*/
get newState(): boolean;
}