Browse code

Refactor and rewrite as contao bundle

Benjamin Roth authored on04/11/2022 22:32:32
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,48 @@
1
+import Swiper from './types/swiper-class';
2
+import { SwiperOptions } from './types/swiper-options';
3
+import { SwiperComponent } from './types/shared';
4
+
5
+declare const A11y: SwiperComponent;
6
+declare const Autoplay: SwiperComponent;
7
+declare const Controller: SwiperComponent;
8
+declare const EffectCoverflow: SwiperComponent;
9
+declare const EffectCube: SwiperComponent;
10
+declare const EffectFade: SwiperComponent;
11
+declare const EffectFlip: SwiperComponent;
12
+declare const HashNavigation: SwiperComponent;
13
+declare const History: SwiperComponent;
14
+declare const Keyboard: SwiperComponent;
15
+declare const Lazy: SwiperComponent;
16
+declare const Mousewheel: SwiperComponent;
17
+declare const Navigation: SwiperComponent;
18
+declare const Pagination: SwiperComponent;
19
+declare const Parallax: SwiperComponent;
20
+declare const Scrollbar: SwiperComponent;
21
+declare const Thumbs: SwiperComponent;
22
+declare const Virtual: SwiperComponent;
23
+declare const Zoom: SwiperComponent;
24
+
25
+export default Swiper;
26
+export {
27
+  Swiper,
28
+  SwiperOptions,
29
+  A11y,
30
+  Autoplay,
31
+  Controller,
32
+  EffectCoverflow,
33
+  EffectCube,
34
+  EffectFade,
35
+  EffectFlip,
36
+  HashNavigation,
37
+  History,
38
+  Keyboard,
39
+  Lazy,
40
+  Mousewheel,
41
+  Navigation,
42
+  Pagination,
43
+  Parallax,
44
+  Scrollbar,
45
+  Thumbs,
46
+  Virtual,
47
+  Zoom,
48
+};