/** Represents the progress of a task. */
export interface Progress {
  /** The current progress value. */
  progress: number;
  /** The total progress value. */
  total: number;
}
