{"version":3,"file":"progressbar.component.d.ts","sources":["progressbar.component.d.ts"],"names":[],"mappings":"AAAA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA","sourcesContent":["import { BarValue, ProgressbarType } from './progressbar-type.interface';\nimport { ProgressbarConfig } from './progressbar.config';\nexport declare class ProgressbarComponent {\n    /** maximum total value of progress element */\n    max: number;\n    /** if `true` changing value of progress bar will be animated */\n    animate: boolean;\n    /** If `true`, striped classes are applied */\n    striped: boolean;\n    /** provide one of the four supported contextual classes: `success`, `info`, `warning`, `danger` */\n    type?: ProgressbarType;\n    /** current value of progress bar. Could be a number or array of objects\n     * like {\"value\":15,\"type\":\"info\",\"label\":\"15 %\"}\n     */\n    set value(value: number | BarValue[]);\n    isStacked: boolean;\n    _value?: number | undefined;\n    _values?: BarValue[];\n    constructor(config: ProgressbarConfig);\n}\n"]}