Skip to content

Commit 323d12e

Browse files
committed
fix lints
1 parent aee14a0 commit 323d12e

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/index.ts

+5-1
Original file line numberDiff line numberDiff 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+
209214
export {
210215
Token,
211216
Source,
@@ -230,7 +235,6 @@ export {
230235
visitInParallel,
231236
getEnterLeaveForKind,
232237
BREAK,
233-
Kind,
234238
DirectiveLocation,
235239
// Predicates
236240
isDefinitionNode,

src/language/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export type { SourceLocation } from './location.js';
55

66
export { 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

1010
export { TokenKind } from './tokenKind.js';
1111

0 commit comments

Comments
 (0)