File tree 2 files changed +4
-4
lines changed 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -86,13 +86,13 @@ export class GraphQLDirective {
86
86
defineToStringTag ( GraphQLDirective ) ;
87
87
defineToJSON ( GraphQLDirective ) ;
88
88
89
- export type GraphQLDirectiveConfig = {
89
+ export type GraphQLDirectiveConfig = { |
90
90
name : string ,
91
91
description ?: ?string ,
92
92
locations : Array < DirectiveLocationEnum > ,
93
93
args ?: ?GraphQLFieldConfigArgumentMap ,
94
94
astNode ?: ?DirectiveDefinitionNode ,
95
- } ;
95
+ | } ;
96
96
97
97
/**
98
98
* Used to conditionally include fields or fragments.
Original file line number Diff line number Diff line change @@ -257,7 +257,7 @@ export type GraphQLSchemaValidationOptions = {|
257
257
allowedLegacyNames ?: ?$ReadOnlyArray < string > ,
258
258
| } ;
259
259
260
- export type GraphQLSchemaConfig = {
260
+ export type GraphQLSchemaConfig = { |
261
261
query ?: ?GraphQLObjectType ,
262
262
mutation ?: ?GraphQLObjectType ,
263
263
subscription ?: ?GraphQLObjectType ,
@@ -266,7 +266,7 @@ export type GraphQLSchemaConfig = {
266
266
astNode ?: ?SchemaDefinitionNode ,
267
267
extensionASTNodes ?: ?$ReadOnlyArray < SchemaExtensionNode > ,
268
268
...GraphQLSchemaValidationOptions ,
269
- } ;
269
+ | } ;
270
270
271
271
function typeMapReducer ( map : TypeMap , type : ?GraphQLType ) : TypeMap {
272
272
if ( ! type ) {
You can’t perform that action at this time.
0 commit comments