UNPKG

526 BTypeScriptView Raw
1import { ProgressbarConfig } from './progressbar.config';
2export declare class ProgressbarComponent {
3 /** if `true` changing value of progress bar will be animated (note: not supported by Bootstrap 4) */
4 animate: boolean;
5 /** maximum total value of progress element */
6 max: number;
7 /** provide one of the four supported contextual classes: `success`, `info`, `warning`, `danger` */
8 type: string;
9 /** current value of progress bar */
10 value: number;
11 constructor(config: ProgressbarConfig);
12}