File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ declare module "react-native-swiper" {
2+ export interface SwiperProps {
3+ style ?: React . ViewStyle ;
4+ showsButtons ?: boolean ;
5+ horizontal ?: boolean ;
6+ pagingEnabled ?: boolean ;
7+ showsHorizontalScrollIndicator ?: boolean ;
8+ showsVerticalScrollIndicator ?: boolean ;
9+ bounces ?: boolean ;
10+ scrollsToTop ?: boolean ;
11+ removeClippedSubviews ?: boolean ;
12+ automaticallyAdjustContentInsets ?: boolean ;
13+ showsPagination ?: boolean ;
14+ loadMinimal ?: boolean ;
15+ loadMinimalSize ?: boolean ;
16+ loadMinimalLoader ?: boolean ;
17+ loop ?: boolean ;
18+ autoplay ?: boolean ;
19+ autoplayTimeout ?: boolean ;
20+ autoplayDirection ?: boolean ;
21+ index ?: number ;
22+ renderPagination ?: ( index : number , total : number , swiper : Swiper ) => JSX . Element ;
23+ dotStyle ?: React . ViewStyle ;
24+ activeDotStyle ?: React . ViewStyle ;
25+ paginationStyle ?: React . ViewStyle ;
26+ dotColor ?: string ;
27+ activeDotColor ?: string ;
28+ }
29+ export default class Swiper extends React . Component < SwiperProps , any > { }
30+ }
You can’t perform that action at this time.
0 commit comments