Represents a value (UI).

interface Value {
    data: string;
    isReadOnly: boolean;
}

Properties

Properties

data: string

The value of the UI.

isReadOnly: boolean

Whether the value of the UI is read-only.