UNPKG

343 BTypeScriptView Raw
1/**
2 * @file vue-awesome-swiper
3 * @author Surmon <https://github.com/surmon-china>
4 */
5
6import type { App } from 'vue';
7import { Swiper, SwiperSlide } from 'swiper/vue';
8
9export * from 'swiper/vue';
10
11declare const _default: {
12 Swiper: typeof Swiper;
13 SwiperSlide: typeof SwiperSlide;
14 install(app: App): void;
15};
16
17export default _default;