ng2-bootstrap-base-modified
Version:
Native Angular Bootstrap Components Typeahead modified
14 lines (10 loc) • 381 B
text/typescript
import { Injectable } from '@angular/core';
()
export class CarouselConfig {
/** Default interval of auto changing of slides */
public interval: number = 5000;
/** Is loop of auto changing of slides can be paused */
public noPause: boolean = false;
/** Is slides can wrap from the last to the first slide */
public noWrap: boolean = false;
}