react-native-redash
Version:
Utility library for React Native Reanimated
5 lines (4 loc) • 568 B
TypeScript
import Animated from "react-native-reanimated";
export declare function runDecay(clock: Animated.Clock, value: Animated.Adaptable<number>, velocity: Animated.Adaptable<number>, rerunDecaying: Animated.Value<number>): Animated.Node<number>[];
export declare function runSpring(clock: Animated.Clock, value: Animated.Adaptable<number>, dest: Animated.Adaptable<number>, config?: Animated.SpringConfig): Animated.Node<number>;
export declare function runTiming(clock: Animated.Clock, value: Animated.Adaptable<any>, config: Animated.TimingConfig): Animated.Node<number>;