找不到模块“react-select/async”的声明文件
Posted
技术标签:
【中文标题】找不到模块“react-select/async”的声明文件【英文标题】:Could not find a declaration file for module 'react-select/async' 【发布时间】:2021-01-18 23:49:02 【问题描述】:我已经安装了 react-select 3.1.0 但是当我尝试按照文档中的定义导入这个文件时,它给了我错误。
/home/.../src/core/components/kiosk/Component_file.tsx(3,25) 中的 TypeScript 错误: 。 '/home/.../node_modules/react-select/async/dist/react-select.cjs.js' 隐含了一个 'any' 类型。 TS7016
导入代码行:
import AsyncSelect from 'react-select/async';
感谢您提前解决了我的问题
【问题讨论】:
你安装了@types/react-select吗? 一切都安装好了。 你解决过这个问题吗? 【参考方案1】:当我在打字稿工作时。我刚刚更改了包路径。我在它前面加上@types。
@types/react-select/async
你可以在 node_modules 中看到@types 目录。
【讨论】:
以上是关于找不到模块“react-select/async”的声明文件的主要内容,如果未能解决你的问题,请参考以下文章