Closed cosmascj closed 8 months ago
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch react-native-raw-bottom-sheet@2.2.0 for the project I'm working on.
react-native-raw-bottom-sheet@2.2.0
Here is the diff that solved my problem:
diff --git a/node_modules/react-native-raw-bottom-sheet/index.d.ts b/node_modules/react-native-raw-bottom-sheet/index.d.ts index 31a5259..c43f9cc 100644 --- a/node_modules/react-native-raw-bottom-sheet/index.d.ts +++ b/node_modules/react-native-raw-bottom-sheet/index.d.ts @@ -20,6 +20,8 @@ declare module "react-native-raw-bottom-sheet" { draggableIcon?: StyleProp<ViewStyle>; }; keyboardAvoidingViewEnabled?: boolean; + children: JSX.Element | JSX.Element[] + };
Thanks this fixed the type issue
so, why it's not added?
Merged #146
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch
react-native-raw-bottom-sheet@2.2.0
for the project I'm working on.Here is the diff that solved my problem: