From 9a2bc7106415e09f23c9667dd8ec3dffec4e76a7 Mon Sep 17 00:00:00 2001 From: vasilich Date: Sun, 29 Sep 2019 18:37:27 -0700 Subject: [PATCH] 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 --- Libraries/Components/TextInput/TextInput.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Components/TextInput/TextInput.js b/Libraries/Components/TextInput/TextInput.js index f38a2d966a3..985113de359 100644 --- a/Libraries/Components/TextInput/TextInput.js +++ b/Libraries/Components/TextInput/TextInput.js @@ -410,7 +410,7 @@ type AndroidProps = $ReadOnly<{| showSoftInputOnFocus?: ?boolean, |}>; -type Props = $ReadOnly<{| +export type Props = $ReadOnly<{| ...$Diff>, ...IOSProps, ...AndroidProps,