0

所以在我的应用程序中,我通过键入添加 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

但仍然没有。

为什么会这样?

4

1 回答 1

1

您可以放心地忽略此警告。打字稿的检查器抱怨它不知道名为“react-animation-components”的模块的存在。您正在使用 vscode,可能会打开一些设置以在您的项目中启用打字稿检查。

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

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

于 2019-11-11T10:35:01.073 回答