Interface ControlState

The state of a control.

interface ControlState {
    isFocused: boolean;
    value: any;
}

Properties

Properties

isFocused: boolean

Whether the control is focused.

value: any

The current value.

Generated using TypeDoc