igniteui-react-grids
Version:
Ignite UI React grid components.
18 lines (17 loc) • 644 B
TypeScript
import { EventArgs, Type } from "igniteui-react-core";
import { GridSelectedKeysCollection } from "./GridSelectedKeysCollection";
/**
* @hidden
*/
export declare class GridSelectedKeysChangedEventArgs extends EventArgs {
static $t: Type;
private _currentKeys;
get currentKeys(): GridSelectedKeysCollection;
set currentKeys(a: GridSelectedKeysCollection);
private _addedKeys;
get addedKeys(): GridSelectedKeysCollection;
set addedKeys(a: GridSelectedKeysCollection);
private _removedKeys;
get removedKeys(): GridSelectedKeysCollection;
set removedKeys(a: GridSelectedKeysCollection);
}