Progress Bar Configuration

interface ProgressBarConfiguration

progress-bar-configuration.interface.ts
import { ProgressBarMode } from '@angular/material/progress-bar';

export interface ProgressBarConfiguration {
  bufferValue: number;
  isVisible: boolean;
  mode: ProgressBarMode;
  value: number;
}

Last updated

Was this helpful?