Skip to content

Commit 3cb4500

Browse files
authored
Exports ast types which should be exported (#1315)
1 parent 32e2f33 commit 3cb4500

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/index.js

+5
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,12 @@ export type {
246246
EnumValueDefinitionNode,
247247
InputObjectTypeDefinitionNode,
248248
TypeExtensionNode,
249+
ScalarTypeExtensionNode,
249250
ObjectTypeExtensionNode,
251+
InterfaceTypeExtensionNode,
252+
UnionTypeExtensionNode,
253+
EnumTypeExtensionNode,
254+
InputObjectTypeExtensionNode,
250255
DirectiveDefinitionNode,
251256
KindEnum,
252257
TokenKindEnum,

src/language/index.js

+5
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,12 @@ export type {
7777
EnumValueDefinitionNode,
7878
InputObjectTypeDefinitionNode,
7979
TypeExtensionNode,
80+
ScalarTypeExtensionNode,
8081
ObjectTypeExtensionNode,
82+
InterfaceTypeExtensionNode,
83+
UnionTypeExtensionNode,
84+
EnumTypeExtensionNode,
85+
InputObjectTypeExtensionNode,
8186
DirectiveDefinitionNode,
8287
} from './ast';
8388

0 commit comments

Comments
 (0)