ngx-bootstrap
Version:
Native Angular Bootstrap Components
15 lines • 506 B
JavaScript
import { Injectable } from '@angular/core';
var ProgressbarConfig = /** @class */ (function () {
function ProgressbarConfig() {
/** if `true` changing value of progress bar will be animated */
this.animate = false;
/** maximum total value of progress element */
this.max = 100;
}
ProgressbarConfig.decorators = [
{ type: Injectable },
];
return ProgressbarConfig;
}());
export { ProgressbarConfig };
//# sourceMappingURL=progressbar.config.js.map