UNPKG

react-native-rolling-bar

Version:
13 lines (12 loc) 350 B
import React from 'react'; import { ViewStyle, StyleProp } from 'react-native'; declare type Props = { interval: number; customStyle?: StyleProp<ViewStyle>; animationDuration?: number; delayBetween?: number; defaultStyle?: boolean; forceRoll?: boolean; }; declare const RollingBar: React.FC<Props>; export default RollingBar;