File tree 5 files changed +0
-27
lines changed 5 files changed +0
-27
lines changed Original file line number Diff line number Diff line change @@ -240,9 +240,6 @@ export {
240
240
export type {
241
241
ParseOptions ,
242
242
SourceLocation ,
243
- TokenKindEnum ,
244
- KindEnum ,
245
- DirectiveLocationEnum ,
246
243
// Visitor utilities
247
244
ASTVisitor ,
248
245
ASTVisitFn ,
Original file line number Diff line number Diff line change @@ -24,10 +24,3 @@ export enum DirectiveLocation {
24
24
INPUT_OBJECT = 'INPUT_OBJECT' ,
25
25
INPUT_FIELD_DEFINITION = 'INPUT_FIELD_DEFINITION' ,
26
26
}
27
-
28
- /**
29
- * The enum type representing the directive location values.
30
- *
31
- * @deprecated Please use `DirectiveLocation`. Will be remove in v17.
32
- */
33
- export type DirectiveLocationEnum = typeof DirectiveLocation ;
Original file line number Diff line number Diff line change @@ -6,10 +6,8 @@ export type { SourceLocation } from './location';
6
6
export { printLocation , printSourceLocation } from './printLocation' ;
7
7
8
8
export { Kind } from './kinds' ;
9
- export type { KindEnum } from './kinds' ;
10
9
11
10
export { TokenKind } from './tokenKind' ;
12
- export type { TokenKindEnum } from './tokenKind' ;
13
11
14
12
export { Lexer } from './lexer' ;
15
13
@@ -106,4 +104,3 @@ export {
106
104
} from './predicates' ;
107
105
108
106
export { DirectiveLocation } from './directiveLocation' ;
109
- export type { DirectiveLocationEnum } from './directiveLocation' ;
Original file line number Diff line number Diff line change @@ -67,10 +67,3 @@ export enum Kind {
67
67
ENUM_TYPE_EXTENSION = 'EnumTypeExtension' ,
68
68
INPUT_OBJECT_TYPE_EXTENSION = 'InputObjectTypeExtension' ,
69
69
}
70
-
71
- /**
72
- * The enum type representing the possible kind values of AST nodes.
73
- *
74
- * @deprecated Please use `Kind`. Will be remove in v17.
75
- */
76
- export type KindEnum = typeof Kind ;
Original file line number Diff line number Diff line change @@ -26,10 +26,3 @@ export enum TokenKind {
26
26
BLOCK_STRING = 'BlockString' ,
27
27
COMMENT = 'Comment' ,
28
28
}
29
-
30
- /**
31
- * The enum type representing the token kinds values.
32
- *
33
- * @deprecated Please use `TokenKind`. Will be remove in v17.
34
- */
35
- export type TokenKindEnum = typeof TokenKind ;
You can’t perform that action at this time.
0 commit comments