progressbar.config.d.ts 202 B

123456
  1. export declare class ProgressbarConfig {
  2. /** if `true` changing value of progress bar will be animated */
  3. animate: Boolean;
  4. /** maximum total value of progress element */
  5. max: number;
  6. }