react-animation-components 包的问题

Issue with react-animation-components package

所以在我的应用程序中,我通过键入来添加 react-animation-components

yarn add react-animation-components@3.0.0

然后我导入 FadeTransform 属性

import { FadeTransform } from 'react-animation-components';

但是,我收到此消息,指出 react-animation-components 的声明无法识别。

我输入这个

yarn add @types/react-animation-components

但还是一无所获。

为什么会这样?

您可以安全地忽略此警告。这是 typescript 的检查器抱怨它不知道名为 "react-animation-components" 的模块的存在。您正在使用 vscode,可能在您的项目中启用了一些启用打字稿检查的设置。

你无法通过yarn add @types/react-animation-components解决它。我检查过,没有这样的类型定义包,没有人编写它。

因此您要么忽略此警告(这是安全的),要么将您自己的类型定义文件添加到此模块。您可以通过在项目的根目录下创建一个 index.d.ts 文件并添加一行 declare module "react-animation-components" 来实现。然后打字稿检查器会让你一个人呆着。