I'm using react-native-keyboard-aware-scroll-view and in this library, they export:
export { listenToKeyboardEvents, KeyboardAwareFlatList, KeyboardAwareSectionList, KeyboardAwareScrollView}
But in their index.d.ts
there's no type for listenToKeyboardEvents
So when I import listenToKeyboardEvents
it works but I keep getting the ts error:
Module '"react-native-keyboard-aware-scroll-view"' has no exported member 'listenToKeyboardEvents'.
What workarounds I can make to fix this error while the library don't update the types?