Progress Bar Configuration

interface ProgressBarConfiguration

This interface governs the progress bar configuration sent to and emitted from the Progress Bar Service.

progress-bar-configuration.interface.ts
export interface ProgressBarConfiguration {
  bufferValue: number;
  isVisible: boolean;
  mode: ProgressBarMode;
  value: number;
}

Last updated