UNPKG

432 BTypeScriptView Raw
1import { BarComponent } from './bar.component';
2export declare class ProgressDirective {
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 addClass: boolean;
8 bars: any[];
9 protected _max: number;
10 addBar(bar: BarComponent): void;
11 removeBar(bar: BarComponent): void;
12}