A simple interface that objects can implement if they have some form of progress.

interface IUFProgress {
    get progress(): number;
}

Hierarchy (view full)

Accessors

Accessors

  • get progress(): number
  • The progress, a value between 0.0 and 1.0 (inclusive).

    Returns number