Skip to content

Commit

Permalink
Follow up to #1117 to comply with #1121
Browse files Browse the repository at this point in the history
  • Loading branch information
leebyron committed Dec 6, 2017
1 parent 2e09b81 commit 0244af4
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/language/ast.js
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ export type ScalarTypeExtensionNode = {
kind: 'ScalarTypeExtension',
loc?: Location,
name: NameNode,
directives?: ?Array<DirectiveNode>,
directives?: Array<DirectiveNode>,
};

export type ObjectTypeExtensionNode = {
Expand All @@ -500,32 +500,32 @@ export type InterfaceTypeExtensionNode = {
kind: 'InterfaceTypeExtension',
loc?: Location,
name: NameNode,
directives?: ?Array<DirectiveNode>,
fields?: ?Array<FieldDefinitionNode>,
directives?: Array<DirectiveNode>,
fields?: Array<FieldDefinitionNode>,
};

export type UnionTypeExtensionNode = {
kind: 'UnionTypeExtension',
loc?: Location,
name: NameNode,
directives?: ?Array<DirectiveNode>,
types?: ?Array<NamedTypeNode>,
directives?: Array<DirectiveNode>,
types?: Array<NamedTypeNode>,
};

export type EnumTypeExtensionNode = {
kind: 'EnumTypeExtension',
loc?: Location,
name: NameNode,
directives?: ?Array<DirectiveNode>,
values?: ?Array<EnumValueDefinitionNode>,
directives?: Array<DirectiveNode>,
values?: Array<EnumValueDefinitionNode>,
};

export type InputObjectTypeExtensionNode = {
kind: 'InputObjectTypeExtension',
loc?: Location,
name: NameNode,
directives?: ?Array<DirectiveNode>,
fields?: ?Array<InputValueDefinitionNode>,
directives?: Array<DirectiveNode>,
fields?: Array<InputValueDefinitionNode>,
};

// Directive Definitions
Expand Down

0 comments on commit 0244af4

Please sign in to comment.