From e40d7b522761682b7cef07179d140e94ee6ea193 Mon Sep 17 00:00:00 2001 From: Andy Date: Wed, 1 Nov 2017 10:28:36 -0700 Subject: [PATCH] react-navigation: Fix lint (#21173) --- types/react-navigation/react-navigation-tests.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/types/react-navigation/react-navigation-tests.tsx b/types/react-navigation/react-navigation-tests.tsx index 62286dd4c3..e8573bac89 100644 --- a/types/react-navigation/react-navigation-tests.tsx +++ b/types/react-navigation/react-navigation-tests.tsx @@ -76,8 +76,7 @@ interface NextScreenNavigationParams { id: number; name: string; } -interface NextScreenProps extends NavigationScreenProps { } -class NextScreen extends React.Component { +class NextScreen extends React.Component> { render() { // Implicit type checks. const navigationStateParams: NextScreenNavigationParams = this.props.navigation.state.params;