UNPKG

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