UNPKG

bootstrap-vue

Version:

BootstrapVue, with more than 85 custom components, over 45 plugins, several custom directives, and over 300 icons, provides one of the most comprehensive implementations of Bootstrap v4 components and grid system for Vue.js. With extensive and automated W

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