我输入的是@types/react-select
的v2.0.17版-这是npm上的最新版本。但是,在打字稿编译期间,出现以下错误。
TypeScript error: node_modules/@types/react-select/lib/components/indicators.d.ts(19,13): Error TS2314: Generic type 'ReactElement<P>' requires 1 type argument(s).
(这是我稍后会遇到的许多类似错误中的1个;我尝试通过在.d.ts文件中手动添加模板声明来手动修复此错误)
这当然很奇怪,因为line 19说:
children: ElementType **<any>**,
即源确实具有正确的代码,但npm软件包没有!
所以npm软件包@types/react-select
可能已经过时了?