Interface UIProgressOptions

Options for AddProgress.

interface UIProgressOptions {
    label?: string;
    value?: number;
    min?: number;
    max?: number;
    style?: Record<string, unknown>;
}

Properties

label?: string

Optional label shown with the progress bar.

value?: number

Current progress value. Defaults to 0.

min?: number

Minimum value. Defaults to 0.

max?: number

Maximum value. Defaults to 100.

style?: Record<string, unknown>

Safe CSS-like renderer style metadata.