mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
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:
committed by
Facebook Github Bot
parent
99487d61f2
commit
9127fb51fc
@@ -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>);
|
||||
|
||||
Reference in New Issue
Block a user