/** * @author 田尘殇Sean(sean.snow@live.com) create at 2017/11/4 */ import { StyleProp, ViewStyle } from 'react-native'; import { ReactNode } from 'react'; export interface Props { showDot?: boolean; autoPlay?: boolean; containerStyle?: StyleProp; duration?: number; style?: StyleProp; children?: ReactNode; inactiveColor?: string; activeColor?: string; }