1 | import { OnDestroy, OnInit } from '@angular/core';
|
2 | import { ProgressDirective } from './progress.directive';
|
3 | export declare class BarComponent implements OnInit, OnDestroy {
|
4 | max: number;
|
5 | /** provide one of the four supported contextual classes: `success`, `info`, `warning`, `danger` */
|
6 | type: string;
|
7 | /** current value of progress bar */
|
8 | value: number;
|
9 | percent: number;
|
10 | transition: string;
|
11 | progress: ProgressDirective;
|
12 | protected _value: number;
|
13 | constructor(progress: ProgressDirective);
|
14 | ngOnInit(): void;
|
15 | ngOnDestroy(): void;
|
16 | recalculatePercentage(): void;
|
17 | }
|