axelra-ag / react-native-animateable-text

🆎 A fork of React Native's <Text/> component that supports Animated Values!
https://www.npmjs.com/package/react-native-animateable-text
MIT License
360 stars 27 forks source link

fix: Fix type of `YGNodeConstRef` for latest react-native version #44

Closed mrousavy closed 6 months ago

mrousavy commented 6 months ago

In latest react-native, the type of node has been changed from YGNodeRef to YGNodeConstRef. Just a const modifier.

I think this even is non-breaking, because non-const to const is implicit, other way around would not work (hence the build error).