diff --git a/releases/next/docs/animated.html b/releases/next/docs/animated.html
index d740a829e38..2e42f6bfef2 100644
--- a/releases/next/docs/animated.html
+++ b/releases/next/docs/animated.html
@@ -98,7 +98,7 @@ then calls setValue on the mapped outputs. e.g.
Config is an object that may have the following options:
listener: Optional async listener.useNativeDriver: Uses the native driver when true. Default false.Make any React component Animatable. Used to create Animated.View, etc.
Imperative API to attach an animated value to an event on a view. Prefer using
Animated.event with useNativeDrive: true if possible.
Advanced imperative API for snooping on animated events that are passed in through props. Use values directly where possible.
Standard value class for driving animations. Typically initialized with
-new Animated.Value(0);
See also AnimatedValue.
2D value class for driving 2D animations, such as pan gestures.
See also AnimatedValueXY.
exported to use the Interpolation type in flow
See also AnimatedInterpolation.
Standard value for driving animations. One Animated.Value can drive
+new Animated.Value(0);
See also AnimatedValue.
2D value class for driving 2D animations, such as pan gestures.
See also AnimatedValueXY.
exported to use the Interpolation type in flow
See also AnimatedInterpolation.
Standard value for driving animations. One Animated.Value can drive
multiple properties in a synchronized fashion, but can only be driven by one
mechanism at a time. Using a new mechanism (e.g. starting a new animation,
or calling setValue) will stop any previous ones.
Stops any animation and resets the value to its original
Interpolates the value before updating the property, e.g. mapping 0-1 to 0-10.
Typically only used internally, but could be used by a custom Animation -class.
Typically only used internally.
Typically only used internally.
2D Value for driving 2D animations, such as pan gestures. Almost identical
API to normal Animated.Value, but multiplexed. Contains two regular
Animated.Values under the hood.
Animated.Value, but multiplexed. Contains two regula
}
}Converts {x, y} into {left, top} for use in style, e.g.
Converts {x, y} into a useable translation transform, e.g.
You can edit the content above on GitHub and send us a pull request!