From 2323cfee82d5c0f89ceaa0e4a73f043334bf53a2 Mon Sep 17 00:00:00 2001 From: Caleb Meredith Date: Sat, 12 Nov 2016 10:57:10 -0500 Subject: [PATCH] Fix missing imports Closes https://github.com/DefinitelyTyped/DefinitelyTyped/issues/12621 This will also need to get merged into `master`. --- graphql/index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/graphql/index.d.ts b/graphql/index.d.ts index c7310ab3cc..0e93923c1d 100644 --- a/graphql/index.d.ts +++ b/graphql/index.d.ts @@ -2194,7 +2194,7 @@ declare module "graphql/utilities/astFromValue" { } declare module "graphql/utilities/buildASTSchema" { - import { Document } from 'graphql/language/ast'; + import { Document, Location } from 'graphql/language/ast'; import { Source } from 'graphql/language/source'; import { GraphQLSchema } from 'graphql/type/schema'; @@ -2263,6 +2263,7 @@ declare module "graphql/utilities/concatAST" { } declare module "graphql/utilities/extendSchema" { + import { Document } from 'graphql/language/ast'; import { GraphQLSchema } from 'graphql/type/schema'; /**