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