Interface IProgressBarTaskEvents

interface IProgressBarTaskEvents {
    complete: (() => void);
    progressUpdate: ((currentProgress: number, totalProgress: number) => void);
}

Hierarchy (view full)

Properties

complete: (() => void)

Triggered when the task is completed.

progressUpdate: ((currentProgress: number, totalProgress: number) => void)

Triggered when the progress of the task is updated.

Type declaration

    • (currentProgress, totalProgress): void
    • Parameters

      • currentProgress: number

        The current progress of the task.

      • totalProgress: number

        The total progress needed to complete the task.

      Returns void