carousel-config.d.ts 485 B

1234567891011121314
  1. /**
  2. * A configuration service for the [NgbCarousel](#/components/carousel/api#NgbCarousel) component.
  3. *
  4. * You can inject this service, typically in your root component, and customize its properties
  5. * to provide default values for all carousels used in the application.
  6. */
  7. export declare class NgbCarouselConfig {
  8. interval: number;
  9. wrap: boolean;
  10. keyboard: boolean;
  11. pauseOnHover: boolean;
  12. showNavigationArrows: boolean;
  13. showNavigationIndicators: boolean;
  14. }