igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
18 lines (17 loc) • 652 B
TypeScript
import { EventArgs, Type } from "igniteui-webcomponents-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);
}