File tree 3 files changed +13
-12
lines changed
3 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { EnumType } from "./enum";
7
7
import { ScalarType } from "./scalars" ;
8
8
import type { NullableOutputType , OutputType } from "../output" ;
9
9
import type { Type } from "../type" ;
10
- import { ListType , NonNullType } from ".. " ;
10
+ import { ListType , NonNullType } from "./list-and-non-null " ;
11
11
12
12
export type __toMakeTypeScriptEmitImportsForItemsOnlyUsedInJSDoc = [
13
13
NullableOutputType < any > ,
Original file line number Diff line number Diff line change 1
- import {
1
+ import type {
2
2
GraphQLFieldConfigMap ,
3
3
GraphQLFieldExtensions ,
4
4
GraphQLInputType ,
5
- GraphQLInterfaceType ,
6
5
GraphQLInterfaceTypeExtensions ,
7
6
GraphQLIsTypeOfFn ,
8
7
GraphQLList ,
9
- GraphQLObjectType ,
10
8
GraphQLObjectTypeExtensions ,
11
9
GraphQLOutputType ,
12
10
GraphQLResolveInfo ,
13
11
GraphQLTypeResolver ,
14
- GraphQLUnionType ,
15
12
GraphQLType ,
16
13
} from "graphql/type/definition" ;
17
14
import {
15
+ GraphQLInterfaceType ,
16
+ GraphQLObjectType ,
17
+ GraphQLUnionType ,
18
+ } from "graphql/type/definition" ;
19
+ import type {
18
20
Arg ,
19
21
InferValueFromArgs ,
20
22
InputType ,
Original file line number Diff line number Diff line change 1
- import {
2
- NullableInputType ,
3
- NullableOutputType ,
1
+ import type { InputType , NullableInputType } from "./api-without-context/input" ;
2
+ import type {
3
+ list ,
4
+ nonNull ,
4
5
NonNullType ,
5
- InputType ,
6
- OutputType ,
7
- } from "." ;
8
- import { list , nonNull } from "./api-without-context/list-and-non-null" ;
6
+ } from "./api-without-context/list-and-non-null" ;
7
+ import type { NullableOutputType , OutputType } from "./output" ;
9
8
10
9
export type __toMakeTypeScriptEmitImportsForItemsOnlyUsedInJSDoc = [
11
10
InputType ,
You can’t perform that action at this time.
0 commit comments