fix: add isChildPublicInstance to ReactNativeTypes (#27788) #41807
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary:
Changelog: [Internal]
Follow-up on facebook/react#27783.
React Native is actually using
ReactNativeTypes
, which are synced fromthis repo. In order to make
isChildPublicInstance
visible forrenderers inside React Native repository, we need to list it in
ReactNativeTypes
.Because of current circular dependency between React Native and React,
it is impossible to actually type it properly:
ReactNativeTypes
from local files, becauseit will break React Native, once synced.
will break these checks:
https://github.com/facebook/react/blob/223db40d5a04dc3311f963f5296675f7f43139e8/packages/react-native-renderer/fabric.js#L12-L13
https://github.com/facebook/react/blob/223db40d5a04dc3311f963f5296675f7f43139e8/packages/react-native-renderer/index.js#L12-L14
DiffTrain build for commit facebook/react@c29ca23.
Differential Revision: D51849040