igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
15 lines (14 loc) • 358 B
TypeScript
import { EventArgs, Type } from "igniteui-angular-core";
/**
* @hidden
*/
export declare class SelectedItemChangedEventArgs extends EventArgs {
static $t: Type;
private _oldItem;
get oldItem(): any;
set oldItem(a: any);
private _newItem;
get newItem(): any;
set newItem(a: any);
constructor(a: any, b: any);
}