설명 없음

RNSwiper.d.ts 346B

123456789101112131415
  1. import { ViewStyle, Animated } from 'react-native'
  2. interface RNSwiperProps {
  3. slideStyle: ViewStyle
  4. loop: boolean
  5. autoPlay: boolean
  6. autoPlayTimeOut: number
  7. initIndex: number
  8. animation: () => {}
  9. onChangeIndex: () => {}
  10. renderPagination: () => {}
  11. }
  12. export default class RNSwiper extends Component <RNSwiperProps>{}