UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

21 lines (20 loc) 647 B
import { EventArgs, Type } from "igniteui-webcomponents-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); }