UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

16 lines (15 loc) 420 B
import * as React from 'react'; export interface ViewPagerProps { selectedIndex?: number; bounces?: boolean; children?: any; style?: any; dots?: boolean; autoplay?: boolean; autoplayTimeout?: number; infinite?: boolean; onScrollBeginDrag?: Function; onMomentumScrollEnd?: Function; } declare const ViewPager: React.ClassicComponentClass<ViewPagerProps>; export default ViewPager;