Represents the progress of a task.

interface Progress {
    progress: number;
    total: number;
}

Properties

Properties

progress: number

The current progress value.

total: number

The total progress value.