Typescript扩展了导入组件的类



我正在使用这个组件:https://github.com/meliorence/react-native-snap-carousel组件正在使用FlatList,因此我可以在其中使用从FlatList派生的方法,例如onendreach:

import BottomCarousel from 'react-native-snap-carousel';
<BottomCarousel
onEndReached={loadMore} // << This gives a TS error
...

然而,库没有扩展这些方法的typescript定义,所以我得到一个错误Property 'onEndReached' does not exist on type 'IntrinsicAttributes &...

我如何在不触及原始组件的情况下将这些TS定义包含在视图中加载的组件中?

您安装了库的类型了吗?$ npm install --save @types/react-native-snap-carousel

相关内容

  • 没有找到相关文章

最新更新