igniteui-angular-inputs
Version:
Ignite UI Angular input components for building rich data visualizations for modern web apps.
14 lines (13 loc) • 322 B
TypeScript
import { EventArgs, Type } from "igniteui-angular-core";
/**
* @hidden
*/
export declare class SelectedValueChangedEventArgs extends EventArgs {
static $t: Type;
private _oldValue;
get oldValue(): Date;
set oldValue(a: Date);
private _newValue;
get newValue(): Date;
set newValue(a: Date);
}