UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

5 lines (4 loc) 276 B
import type { AnimationCallback, AnimatableValue } from '../commonTypes'; type withRepeatType = <T extends AnimatableValue>(animation: T, numberOfReps?: number, reverse?: boolean, callback?: AnimationCallback) => T; export declare const withRepeat: withRepeatType; export {};