找不到模块“ graphql-hooks”或其对应的类型声明

时间:2020-05-01 13:51:17

标签: javascript reactjs typescript react-native graphql

我该怎么办才能在本机TypeScript中安装graphql-hooks?如何定义类型?

我已经使用npm进行安装,但这不起作用。

2 个答案:

答案 0 :(得分:1)

React本机(包括TypeScript)与其他任何项目都应该没有什么不同:

npm install graphql-hooks

也许您的项目正在使用yarn

yarn add graphql-hooks

当我在标准的create-react-app中尝试该方法时,它可以工作并立即获取TypeScript类型。

答案 1 :(得分:0)

我认为graphql-hooks带有键入功能。但是,一个小技巧是创建自己的自定义类型。即

创建一个index.d.ts文件并插入以下代码

declare module 'graphql-hooks' {
    const noTypesYet: any;
    export default noTypesYet;
}

这是一篇有关创建自定义类型https://www.credera.com/blog/technology-solutions/typescript-adding-custom-type-definitions-for-existing-libraries/

的不错的文章