Skip to content

Commit 162e76a

Browse files
Jackson KearlIvanGoncharov
Jackson Kearl
authored andcommitted
Fix relative imports (#2120)
1 parent cb31d3c commit 162e76a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tstypes/utilities/coerceInputValue.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { GraphQLInputType } from '../type/definition';
2-
import { GraphQLError } from 'tstypes/error';
2+
import { GraphQLError } from '../error';
33

44
type OnErrorCB = (
55
path: ReadonlyArray<string | number>,

tstypes/validation/validate.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { DocumentNode } from '../language/ast';
33
import { GraphQLSchema } from '../type/schema';
44
import { TypeInfo } from '../utilities/TypeInfo';
55
import { ValidationRule, SDLValidationRule } from './ValidationContext';
6-
import Maybe from 'tstypes/tsutils/Maybe';
6+
import Maybe from '../tsutils/Maybe';
77

88
/**
99
* Implements the "Validation" section of the spec.

0 commit comments

Comments
 (0)