From 06c44568e46e2bde4aacf443dcbc1aa161b00e47 Mon Sep 17 00:00:00 2001 From: Max Volkov Date: Fri, 28 Feb 2020 20:46:44 +0300 Subject: [PATCH] fix tests (#978) Cannot find name 'ReactComponentType'. --- react-native-gesture-handler.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-native-gesture-handler.d.ts b/react-native-gesture-handler.d.ts index bebfdaadc4..3b8733b570 100644 --- a/react-native-gesture-handler.d.ts +++ b/react-native-gesture-handler.d.ts @@ -454,7 +454,7 @@ declare module 'react-native-gesture-handler' { NativeViewGestureHandlerProperties & FlatListProperties > {} - export const GestureHandlerRootView: ReactComponentType; + export const GestureHandlerRootView: React.ComponentType; export function gestureHandlerRootHOC

( Component: React.ComponentType

,