From fee1a8fef615dc25a86c1427803d7593b6690087 Mon Sep 17 00:00:00 2001 From: Breno Cota <46490801+brenogcota@users.noreply.github.com> Date: Fri, 14 Jan 2022 16:51:52 -0300 Subject: [PATCH] fix: Cannot find name 'Schema'. camelcase variable schema throw error "Cannot find name 'Schema'. Did you mean 'schema'" --- react/typings/gql.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/typings/gql.d.ts b/react/typings/gql.d.ts index 20cca06..5be3ade 100644 --- a/react/typings/gql.d.ts +++ b/react/typings/gql.d.ts @@ -11,5 +11,5 @@ declare module '*.graphql' { const schema: DocumentNode - export default Schema + export default schema }