Blame view

node_modules/bootstrap-vue/esm/components/carousel/index.d.ts 430 Bytes
4cd4fd28   郭伟龙   feat: 初始化项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// 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 {}