igniteui-react-core
Version:
Ignite UI React Core.
18 lines (17 loc) • 451 B
TypeScript
import { EventArgs, Type } from "./type";
/**
* @hidden
*/
export declare class PropertyUpdatedEventArgs extends EventArgs {
static $t: Type;
constructor(a: string, b: any, c: any);
private _propertyName;
get propertyName(): string;
set propertyName(a: string);
private _oldValue;
get oldValue(): any;
set oldValue(a: any);
private _newValue;
get newValue(): any;
set newValue(a: any);
}