igniteui-react-core
Version:
Ignite UI React Core.
22 lines (21 loc) • 683 B
TypeScript
import { Description } from "./Description";
import { CellKeyDescription } from "./CellKeyDescription";
import { Type } from "./type";
/**
* @hidden
*/
export declare class GridSelectedCellsChangedEventArgsDescription extends Description {
static $t: Type;
protected get_type(): string;
get type(): string;
constructor();
private i;
get currentCells(): CellKeyDescription[];
set currentCells(a: CellKeyDescription[]);
private h;
get addedCells(): CellKeyDescription[];
set addedCells(a: CellKeyDescription[]);
private j;
get removedCells(): CellKeyDescription[];
set removedCells(a: CellKeyDescription[]);
}