@@ -448,6 +448,8 @@ export type ASTNodeListener = {
448
448
"TSEmptyBodyFunctionExpression:exit" ?: (
449
449
node : TSESTree . TSEmptyBodyFunctionExpression & ASTNodeWithParent ,
450
450
) => void
451
+ TSEnumBody ?: ( node : TSESTree . TSEnumBody & ASTNodeWithParent ) => void
452
+ "TSEnumBody:exit" ?: ( node : TSESTree . TSEnumBody & ASTNodeWithParent ) => void
451
453
TSEnumDeclaration ?: (
452
454
node : TSESTree . TSEnumDeclaration & ASTNodeWithParent ,
453
455
) => void
@@ -478,12 +480,6 @@ export type ASTNodeListener = {
478
480
"TSFunctionType:exit" ?: (
479
481
node : TSESTree . TSFunctionType & ASTNodeWithParent ,
480
482
) => void
481
- TSInstantiationExpression ?: (
482
- node : TSESTree . TSInstantiationExpression & ASTNodeWithParent ,
483
- ) => void
484
- "TSInstantiationExpression:exit" ?: (
485
- node : TSESTree . TSInstantiationExpression & ASTNodeWithParent ,
486
- ) => void
487
483
TSImportEqualsDeclaration ?: (
488
484
node : TSESTree . TSImportEqualsDeclaration & ASTNodeWithParent ,
489
485
) => void
@@ -508,6 +504,12 @@ export type ASTNodeListener = {
508
504
) => void
509
505
TSInferType ?: ( node : TSESTree . TSInferType & ASTNodeWithParent ) => void
510
506
"TSInferType:exit" ?: ( node : TSESTree . TSInferType & ASTNodeWithParent ) => void
507
+ TSInstantiationExpression ?: (
508
+ node : TSESTree . TSInstantiationExpression & ASTNodeWithParent ,
509
+ ) => void
510
+ "TSInstantiationExpression:exit" ?: (
511
+ node : TSESTree . TSInstantiationExpression & ASTNodeWithParent ,
512
+ ) => void
511
513
TSInterfaceBody ?: ( node : TSESTree . TSInterfaceBody & ASTNodeWithParent ) => void
512
514
"TSInterfaceBody:exit" ?: (
513
515
node : TSESTree . TSInterfaceBody & ASTNodeWithParent ,
@@ -932,6 +934,8 @@ export type TSNodeListener = {
932
934
"TSEmptyBodyFunctionExpression:exit" ?: (
933
935
node : TSESTree . TSEmptyBodyFunctionExpression & ASTNodeWithParent ,
934
936
) => void
937
+ TSEnumBody ?: ( node : TSESTree . TSEnumBody & ASTNodeWithParent ) => void
938
+ "TSEnumBody:exit" ?: ( node : TSESTree . TSEnumBody & ASTNodeWithParent ) => void
935
939
TSEnumDeclaration ?: (
936
940
node : TSESTree . TSEnumDeclaration & ASTNodeWithParent ,
937
941
) => void
@@ -962,12 +966,6 @@ export type TSNodeListener = {
962
966
"TSFunctionType:exit" ?: (
963
967
node : TSESTree . TSFunctionType & ASTNodeWithParent ,
964
968
) => void
965
- TSInstantiationExpression ?: (
966
- node : TSESTree . TSInstantiationExpression & ASTNodeWithParent ,
967
- ) => void
968
- "TSInstantiationExpression:exit" ?: (
969
- node : TSESTree . TSInstantiationExpression & ASTNodeWithParent ,
970
- ) => void
971
969
TSImportEqualsDeclaration ?: (
972
970
node : TSESTree . TSImportEqualsDeclaration & ASTNodeWithParent ,
973
971
) => void
@@ -992,6 +990,12 @@ export type TSNodeListener = {
992
990
) => void
993
991
TSInferType ?: ( node : TSESTree . TSInferType & ASTNodeWithParent ) => void
994
992
"TSInferType:exit" ?: ( node : TSESTree . TSInferType & ASTNodeWithParent ) => void
993
+ TSInstantiationExpression ?: (
994
+ node : TSESTree . TSInstantiationExpression & ASTNodeWithParent ,
995
+ ) => void
996
+ "TSInstantiationExpression:exit" ?: (
997
+ node : TSESTree . TSInstantiationExpression & ASTNodeWithParent ,
998
+ ) => void
995
999
TSInterfaceBody ?: ( node : TSESTree . TSInterfaceBody & ASTNodeWithParent ) => void
996
1000
"TSInterfaceBody:exit" ?: (
997
1001
node : TSESTree . TSInterfaceBody & ASTNodeWithParent ,
0 commit comments