ng2-bootstrap
Version:
Native Angular Bootstrap Components
20 lines (19 loc) • 645 B
JavaScript
;
var core_1 = require('@angular/core');
var CarouselConfig = (function () {
function CarouselConfig() {
/** Default interval of auto changing of slides */
this.interval = 5000;
/** Is loop of auto changing of slides can be paused */
this.noPause = false;
/** Is slides can wrap from the last to the first slide */
this.noWrap = false;
}
CarouselConfig.decorators = [
{ type: core_1.Injectable },
];
/** @nocollapse */
CarouselConfig.ctorParameters = function () { return []; };
return CarouselConfig;
}());
exports.CarouselConfig = CarouselConfig;