React Hookers - v6.3.0
    Preparing search index...

    Interface FormattedInputState<V>

    The state of a formatted input.

    interface FormattedInputState<V> {
        formattedValue: string;
        selectionEnd: number;
        selectionStart: number;
        value: V;
    }

    Type Parameters

    • V

      An input value.

    Hierarchy (View Summary)

    Index

    Properties

    formattedValue: string

    The formatted value rendered in the input.

    selectionEnd: number

    The character index in formattedValue where the selected range ends (exclusive).

    selectionStart: number

    The character index in formattedValue where the selected range starts (inclusive).

    value: V

    The value exposed by the input.