我该怎么办才能在本机TypeScript中安装graphql-hooks?如何定义类型?
我已经使用npm进行安装,但这不起作用。
答案 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/
的不错的文章