UNPKG

bootstrap-vue

Version:

BootstrapVue, with over 40 plugins and more than 75 custom components, provides one of the most comprehensive implementations of Bootstrap v4 components and grid system for Vue.js. With extensive and automated WAI-ARIA accessibility markup.

23 lines (19 loc) 482 B
// // Carousel // import Vue from 'vue' import { BvPlugin, BvComponent } from '../../' // Plugin export declare const CarouselPlugin: BvPlugin export default CarouselPlugin // Component: b-carousel export declare class BCarousel extends BvComponent { setSlide: (slide: number) => void prev: () => void next: () => void start: () => void pause: () => void restart: () => void } // Component: b-carousel-slide export declare class BCarouselSlide extends BvComponent {}