Export props type for TextInput component (#26622)

Summary:
Fix for issue https://github.com/facebook/react-native/issues/26263

## Changelog

[JavaScript] [Fixed] - Added an export for TextInput props type
Pull Request resolved: https://github.com/facebook/react-native/pull/26622

Test Plan: This PR does not change user interface

Differential Revision: D17661069

Pulled By: cpojer

fbshipit-source-id: 7a8e0159de9dc9e775eae349d0f1e743155e56db
This commit is contained in:
vasilich
2019-09-29 18:39:20 -07:00
committed by Facebook Github Bot
parent d98ff02433
commit 9a2bc71064
+1 -1
View File
@@ -410,7 +410,7 @@ type AndroidProps = $ReadOnly<{|
showSoftInputOnFocus?: ?boolean,
|}>;
type Props = $ReadOnly<{|
export type Props = $ReadOnly<{|
...$Diff<ViewProps, $ReadOnly<{|style: ?ViewStyleProp|}>>,
...IOSProps,
...AndroidProps,