UNPKG

733 BTypeScriptView Raw
1import { NgbConfig } from '../ngb-config';
2/**
3 * A configuration service for the [NgbCarousel](#/components/carousel/api#NgbCarousel) component.
4 *
5 * You can inject this service, typically in your root component, and customize its properties
6 * to provide default values for all carousels used in the application.
7 */
8export declare class NgbCarouselConfig {
9 private _ngbConfig;
10 interval: number;
11 wrap: boolean;
12 keyboard: boolean;
13 pauseOnHover: boolean;
14 pauseOnFocus: boolean;
15 showNavigationArrows: boolean;
16 showNavigationIndicators: boolean;
17 private _animation;
18 constructor(_ngbConfig: NgbConfig);
19 get animation(): boolean;
20 set animation(animation: boolean);
21}