Interface Progress<T>

Defines a generalized way of reporting progress updates.

interface Progress<T> {
    report(value): void;
}

Type Parameters

  • T

Methods

Methods

  • Report a progress update.

    Parameters

    • value: T

      A progress item, like a message and/or an report on how much work finished

    Returns void