首页 > 解决方案 > 未找到 @types/react-bootstrap-table2-editor

问题描述

我正在使用 react-bootstrap-table2,但我无法安装 react-bootstrap-table2-editor typescript

Could not find a declaration file for module 'react-bootstrap-table2-editor'. 'node_modules/react-bootstrap-table2-editor/lib/index.js' implicitly has an 'any' type.
  Try `npm install @types/react-bootstrap-table2-editor` if it exists or add a new declaration (.d.ts) file containing `declare module 'react-bootstrap-table2-editor';`ts(7016)

你能给我一些建议吗?

标签: reactjstypescript

解决方案


npm install @types/react-bootstrap-table-next

这些不是官方类型,因此它们可能无法正常工作。

另一种选择是在// @ts-ignore您的导入上方添加。这意味着该包不支持打字稿,但也没有错误


推荐阅读