ng2-bootstrap
Version:
Native Angular Bootstrap Components
18 lines (17 loc) • 605 B
JavaScript
;
var core_1 = require('@angular/core');
var ProgressbarConfig = (function () {
function ProgressbarConfig() {
/** if `true` changing value of progress bar will be animated (note: not supported by Bootstrap 4) */
this.animate = true;
/** maximum total value of progress element */
this.max = 100;
}
ProgressbarConfig.decorators = [
{ type: core_1.Injectable },
];
/** @nocollapse */
ProgressbarConfig.ctorParameters = function () { return []; };
return ProgressbarConfig;
}());
exports.ProgressbarConfig = ProgressbarConfig;