Could not find a declaration file for module 'react-hover'
我从 https://github.com/cht8687/react-hover
为我的反应代码安装了 \\'react-hover\\' 库
我使用了如下的导入语句:
然后我得到这个错误
找不到模块 \\'react-hover\\' 的声明文件。 \\'d:/.......(path)/index.js\\' 隐式具有 \\'any\\' 类型。
如果
的新声明 (.d.ts) 文件
当我尝试
它也不起作用(导致以下错误)
npm 错误! 404 \\'@types/react-hover@latest\\' 不在 npm 注册表中。
npm 错误! 404 你的包名无效,因为
npm 错误! 404 1.名称只能包含URL友好字符
我该如何解决这个问题?
这意味着当前没有可用于该依赖项的类型定义,因为包所有者/社区尚未创建它们。
一个快速的解决方法是在您的项目中创建一个包含
Try npm install @types/react-hover if it exists or add a new
declaration (.d.ts) file containing declare module 'react-hover';
请注意,不会为您的项目添加此依赖项的类型检查!
你试过