@@ -481,10 +481,10 @@ export type TypeExtensionNode =
481481 | InputObjectTypeExtensionNode ;
482482
483483export type ScalarTypeExtensionNode = {
484- kind : 'ScalarTypeExtension' ,
485- loc ?: Location ,
486- name : NameNode ,
487- directives ?: $ReadOnlyArray < DirectiveNode > ,
484+ + kind : 'ScalarTypeExtension' ,
485+ + loc ? : Location ,
486+ + name : NameNode ,
487+ + directives ?: $ReadOnlyArray < DirectiveNode > ,
488488} ;
489489
490490export type ObjectTypeExtensionNode = {
@@ -497,35 +497,35 @@ export type ObjectTypeExtensionNode = {
497497} ;
498498
499499export type InterfaceTypeExtensionNode = {
500- kind : 'InterfaceTypeExtension' ,
501- loc ?: Location ,
502- name : NameNode ,
503- directives ?: $ReadOnlyArray < DirectiveNode > ,
504- fields ?: $ReadOnlyArray < FieldDefinitionNode > ,
500+ + kind : 'InterfaceTypeExtension' ,
501+ + loc ? : Location ,
502+ + name : NameNode ,
503+ + directives ?: $ReadOnlyArray < DirectiveNode > ,
504+ + fields ?: $ReadOnlyArray < FieldDefinitionNode > ,
505505} ;
506506
507507export type UnionTypeExtensionNode = {
508- kind : 'UnionTypeExtension' ,
509- loc ?: Location ,
510- name : NameNode ,
511- directives ?: $ReadOnlyArray < DirectiveNode > ,
512- types ?: $ReadOnlyArray < NamedTypeNode > ,
508+ + kind : 'UnionTypeExtension' ,
509+ + loc ? : Location ,
510+ + name : NameNode ,
511+ + directives ?: $ReadOnlyArray < DirectiveNode > ,
512+ + types ?: $ReadOnlyArray < NamedTypeNode > ,
513513} ;
514514
515515export type EnumTypeExtensionNode = {
516- kind : 'EnumTypeExtension' ,
517- loc ?: Location ,
518- name : NameNode ,
519- directives ?: $ReadOnlyArray < DirectiveNode > ,
520- values ?: $ReadOnlyArray < EnumValueDefinitionNode > ,
516+ + kind : 'EnumTypeExtension' ,
517+ + loc ? : Location ,
518+ + name : NameNode ,
519+ + directives ?: $ReadOnlyArray < DirectiveNode > ,
520+ + values ?: $ReadOnlyArray < EnumValueDefinitionNode > ,
521521} ;
522522
523523export type InputObjectTypeExtensionNode = {
524- kind : 'InputObjectTypeExtension' ,
525- loc ?: Location ,
526- name : NameNode ,
527- directives ?: $ReadOnlyArray < DirectiveNode > ,
528- fields ?: $ReadOnlyArray < InputValueDefinitionNode > ,
524+ + kind : 'InputObjectTypeExtension' ,
525+ + loc ? : Location ,
526+ + name : NameNode ,
527+ + directives ?: $ReadOnlyArray < DirectiveNode > ,
528+ + fields ?: $ReadOnlyArray < InputValueDefinitionNode > ,
529529} ;
530530
531531// Directive Definitions
0 commit comments