This interface extends the IUFProgress and adds a method to request the progress weight.

Classes can implement this interface if there is overall progress calculated; the progressWeight can be used if one objects progress is more important than another objects progress.

interface IUFWeightedProgress {
    get progress(): number;
    get progressWeight(): number;
}

Hierarchy (view full)

Implemented by

Accessors

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

    Returns number