UNPKG

ngx-bootstrap

Version:
25 lines (24 loc) 1.23 kB
import { BarValue, ProgressbarType } from './progressbar-type.interface'; import { ProgressbarConfig } from './progressbar.config'; import * as ɵngcc0 from '@angular/core'; export declare class ProgressbarComponent { /** maximum total value of progress element */ max: number; /** if `true` changing value of progress bar will be animated */ animate: boolean; /** If `true`, striped classes are applied */ striped: boolean; /** provide one of the four supported contextual classes: `success`, `info`, `warning`, `danger` */ type?: ProgressbarType; /** current value of progress bar. Could be a number or array of objects * like {"value":15,"type":"info","label":"15 %"} */ set value(value: number | BarValue[]); isStacked: boolean; _value?: number | undefined; _values?: BarValue[]; constructor(config: ProgressbarConfig); static ɵfac: ɵngcc0.ɵɵFactoryDef<ProgressbarComponent, never>; static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<ProgressbarComponent, "progressbar", never, { "max": "max"; "animate": "animate"; "striped": "striped"; "value": "value"; "type": "type"; }, {}, never, ["*"]>; } //# sourceMappingURL=progressbar.component.d.ts.map