File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -206,6 +206,11 @@ export type {
206
206
} from './type/index.js' ;
207
207
208
208
// Parse and operate on GraphQL language source files.
209
+ export {
210
+ // eslint-disable-line @typescript-eslint/consistent-type-exports
211
+ Kind ,
212
+ } from './language/kinds.js' ;
213
+
209
214
export {
210
215
Token ,
211
216
Source ,
@@ -230,7 +235,6 @@ export {
230
235
visitInParallel ,
231
236
getEnterLeaveForKind ,
232
237
BREAK ,
233
- Kind ,
234
238
DirectiveLocation ,
235
239
// Predicates
236
240
isDefinitionNode ,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export type { SourceLocation } from './location.js';
5
5
6
6
export { printLocation , printSourceLocation } from './printLocation.js' ;
7
7
8
- export { Kind } from './kinds.js' ;
8
+ export { Kind } from './kinds.js' ; // eslint-disable-line @typescript-eslint/consistent-type-exports
9
9
10
10
export { TokenKind } from './tokenKind.js' ;
11
11
You can’t perform that action at this time.
0 commit comments