UNPKG

igniteui-webcomponents-inputs

Version:

Ignite UI Web Components inputs components.

14 lines (13 loc) 378 B
import { EventArgs, Type } from "igniteui-webcomponents-core"; /** * @hidden */ export declare class InputChangeEventArgs extends EventArgs { static $t: Type; private _value; get value(): string; set value(a: string); private _isCompositionInProgress; get isCompositionInProgress(): boolean; set isCompositionInProgress(a: boolean); }