Information about a single value for an input

interface InputValue {
    data: { [key: string]: any };
    displayValue: string;
    value: string;
}

Properties

data: { [key: string]: any }

Any other data about this input

displayValue: string

The text to show for the display of this value

value: string

The value to store for this input