diff --git a/native/flow-typed/npm/react-native-reanimated_v2.x.x.js b/native/flow-typed/npm/react-native-reanimated_v2.x.x.js --- a/native/flow-typed/npm/react-native-reanimated_v2.x.x.js +++ b/native/flow-typed/npm/react-native-reanimated_v2.x.x.js @@ -589,6 +589,11 @@ callback?: AnimationCallback, ) => T; + declare type WithDelay = ( + delayMs: number, + delayedAnimation: T, + ) => T; + declare type RunOnJS = (func: F) => F; declare type CancelAnimation = (animation: SharedValue) => void; @@ -659,6 +664,7 @@ declare export var useAnimatedStyle: UseAnimatedStyle; declare export var withSpring: WithSpring; declare export var withTiming: WithTiming; + declare export var withDelay: WithDelay; declare export var runOnJS: RunOnJS; declare export var cancelAnimation: CancelAnimation; declare export var useAnimatedKeyboard: UseAnimatedKeyboard;