igniteui-react-grids
Version:
Ignite UI React grid components.
21 lines (20 loc) • 639 B
TypeScript
import { EventArgs, Type } from "igniteui-react-core";
import { CellPropertyAnimationType } from "./CellPropertyAnimationType";
/**
* @hidden
*/
export declare class DefinitionPropertyUpdatedEventArgs extends EventArgs {
static $t: Type;
private _propertyName;
get propertyName(): string;
set propertyName(a: string);
private _animationType;
get animationType(): CellPropertyAnimationType;
set animationType(a: CellPropertyAnimationType);
private _oldValue;
get oldValue(): any;
set oldValue(a: any);
private _newValue;
get newValue(): any;
set newValue(a: any);
}