在我的TypeScript React Native移动应用程序中,我尝试检测屏幕上出现的元素。我尝试使用许多软件包,如react-native-inview和react-native-component-inview,但它们一直抛出与typescript typing
相关的错误。我如何解决这些错误,或者是否有其他方法或软件包支持 typescript ?
错误:
Could not find a declaration file for module 'react-native-inview'. 'PATH/node_modules/react-native-inview/index.js' implicitly has an 'any' type.
Try `npm i --save-dev @types/react-native-inview` if it exists or add a new declaration (.d.ts) file containing `declare module 'react-native-inview';`
注:自动指定类型的包不存在,如npm i --save-dev @types/react-native-inview
。
1条答案
按热度按时间mw3dktmi1#
似乎您没有正确地将这些软件包添加到您的应用程序中。您是否尝试过在ios文件夹中使用pod安装命令?如果没有,我建议您刷新应用程序目录中的节点模块。