From 2abac61fd0d3062906eab1a8751def1348d7be10 Mon Sep 17 00:00:00 2001 From: Manuel Thomsen Date: Fri, 2 Feb 2018 17:06:58 +0100 Subject: [PATCH] [React Native] Update AnimatedValue type --- types/react-native/index.d.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/types/react-native/index.d.ts b/types/react-native/index.d.ts index 6cb72a0041..c2ca58a5f3 100644 --- a/types/react-native/index.d.ts +++ b/types/react-native/index.d.ts @@ -7726,8 +7726,7 @@ export interface EasingStatic { } export namespace Animated { - // Most (all?) functions where AnimatedValue is used any subclass of Animated can be used as well. - type AnimatedValue = Animated; + type AnimatedValue = Value; type AnimatedValueXY = ValueXY; type Base = Animated;