igniteui-react-core
Version:
Ignite UI React Core.
19 lines (18 loc) • 623 B
TypeScript
import { Description } from "./Description";
import { GridCellPositionDescription } from "./GridCellPositionDescription";
import { Type } from "./type";
/**
* @hidden
*/
export declare class GridActiveCellChangedEventArgsDescription extends Description {
static $t: Type;
protected get_type(): string;
get type(): string;
constructor();
private h;
get newActiveCell(): GridCellPositionDescription;
set newActiveCell(a: GridCellPositionDescription);
private i;
get oldActiveCell(): GridCellPositionDescription;
set oldActiveCell(a: GridCellPositionDescription);
}