interface AccessibilityValue {
    max?: number;
    min?: number;
    now?: number;
    text?: string;
}

Properties

Properties

max?: number

The maximum value of this component's range. (should be an integer)

min?: number

The minimum value of this component's range. (should be an integer)

now?: number

The current value of this component's range. (should be an integer)

text?: string

A textual description of this component's value. (will override minimum, current, and maximum if set)