diff --git a/releases/next/docs/animated.html b/releases/next/docs/animated.html
index 4e02d6719b8..91b14b07fe0 100644
--- a/releases/next/docs/animated.html
+++ b/releases/next/docs/animated.html
@@ -95,58 +95,10 @@ 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.
Exported for ease of type checking. All animated values derive from this class.
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.
Directly set the value. This will stop any animations running on the value -and update all the bound properties.
Sets an offset that is applied on top of whatever value is set, whether via
-setValue, an animation, or Animated.event. Useful for compensating
-things like the start of a pan gesture.
Merges the offset value into the base value and resets the offset to zero. -The final output of the value is unchanged.
Sets the offset value to the base value, and resets the base value to zero. -The final output of the value is unchanged.
Adds an asynchronous listener to the value so you can observe updates from -animations. This is useful because there is no way to -synchronously read the value because it might be driven natively.
Stops any running animation or tracking. callback is invoked with the
-final value after stopping the animation, which is useful for updating
-state to match the animation position with layout.
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.
Converts {x, y} into {left, top} for use in style, e.g.
Converts {x, y} into a useable translation transform, e.g.
Improve this page by sending a pull request!