UNPKG

@ng-bootstrap/ng-bootstrap

Version:
22 lines (21 loc) 712 B
import { NgbConfig } from '../ngb-config'; /** * A configuration service for the [NgbCarousel](#/components/carousel/api#NgbCarousel) component. * * You can inject this service, typically in your root component, and customize its properties * to provide default values for all carousels used in the application. */ export declare class NgbCarouselConfig { private _ngbConfig; interval: number; wrap: boolean; keyboard: boolean; pauseOnHover: boolean; pauseOnFocus: boolean; showNavigationArrows: boolean; showNavigationIndicators: boolean; private _animation; constructor(_ngbConfig: NgbConfig); get animation(): boolean; set animation(animation: boolean); }