From 9853ed4e216e8c49cf75d690ba504ad038230bb4 Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders Date: Wed, 24 May 2017 08:44:31 -0700 Subject: [PATCH] Make ComponentLifecycle inherited methods public --- .../react-native-scrollable-tab-view-tests.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/react-native-scrollable-tab-view/react-native-scrollable-tab-view-tests.tsx b/types/react-native-scrollable-tab-view/react-native-scrollable-tab-view-tests.tsx index 0fb10a4ffb..7953a4bbae 100644 --- a/types/react-native-scrollable-tab-view/react-native-scrollable-tab-view-tests.tsx +++ b/types/react-native-scrollable-tab-view/react-native-scrollable-tab-view-tests.tsx @@ -36,9 +36,9 @@ class ScrollableTabViewDemo extends React.Component<{}, {}> { ); } - protected componentWillMount?(): void { + componentWillMount?(): void { } - protected componentWillUnmount?(): void { + componentWillUnmount?(): void { } }