UNPKG

805 BTypeScriptView Raw
1import * as i0 from "@angular/core";
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 private _animation;
11 interval: number;
12 wrap: boolean;
13 keyboard: boolean;
14 pauseOnHover: boolean;
15 pauseOnFocus: boolean;
16 showNavigationArrows: boolean;
17 showNavigationIndicators: boolean;
18 get animation(): boolean;
19 set animation(animation: boolean);
20 static ɵfac: i0.ɵɵFactoryDeclaration<NgbCarouselConfig, never>;
21 static ɵprov: i0.ɵɵInjectableDeclaration<NgbCarouselConfig>;
22}