UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

7 lines (6 loc) 293 B
import type { AnimationCallback } from '../../commonTypes'; import type { DecayConfig } from './utils'; export type WithDecayConfig = DecayConfig; type withDecayType = (userConfig: DecayConfig, callback?: AnimationCallback) => number; export declare const withDecay: withDecayType; export {};