File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -206,6 +206,11 @@ export type {
206206} from './type/index.js' ;
207207
208208// 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+
209214export {
210215 Token ,
211216 Source ,
@@ -230,7 +235,6 @@ export {
230235 visitInParallel ,
231236 getEnterLeaveForKind ,
232237 BREAK ,
233- Kind ,
234238 DirectiveLocation ,
235239 // Predicates
236240 isDefinitionNode ,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export type { SourceLocation } from './location.js';
55
66export { printLocation , printSourceLocation } from './printLocation.js' ;
77
8- export { Kind } from './kinds.js' ;
8+ export { Kind } from './kinds.js' ; // eslint-disable-line @typescript-eslint/consistent-type-exports
99
1010export { TokenKind } from './tokenKind.js' ;
1111
You can’t perform that action at this time.
0 commit comments