Fix missing imports

Closes https://github.com/DefinitelyTyped/DefinitelyTyped/issues/12621

This will also need to get merged into `master`.
This commit is contained in:
Caleb Meredith
2016-11-12 10:57:10 -05:00
committed by GitHub
parent 23d8466f82
commit 2323cfee82
+2 -1
View File
@@ -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';
/**