Manual fixes for xplat/js/react-native-github

Summary:
Need to add explicit type annotations in these areas to unblock types-first architecture for Flow. These are locations the codemod could not automatically handle.

I'll call out areas I need a close eye on in the comments.

Reviewed By: panagosg7

Differential Revision: D16659053

fbshipit-source-id: 167dd2abe093019b128676426374c1c62cf71e7f
This commit is contained in:
Logan Daniels
2019-08-09 10:11:15 -07:00
committed by Facebook Github Bot
parent 99487d61f2
commit 9127fb51fc
55 changed files with 271 additions and 123 deletions
@@ -11,6 +11,7 @@
'use strict';
import codegenNativeComponent from '../../Utilities/codegenNativeComponent';
import {type NativeComponentType} from '../../Utilities/codegenNativeComponent';
import type {
DirectEventHandler,
@@ -64,4 +65,6 @@ type NativeProps = $ReadOnly<{|
refreshing: boolean,
|}>;
export default codegenNativeComponent<NativeProps>('AndroidSwipeRefreshLayout');
export default (codegenNativeComponent<NativeProps>(
'AndroidSwipeRefreshLayout',
): NativeComponentType<NativeProps>);