@@ -423,7 +423,6 @@ interface RuleListenerBaseSelectors {
423
423
AssignmentExpression ?: RuleFunction < TSESTree . AssignmentExpression > ;
424
424
AssignmentPattern ?: RuleFunction < TSESTree . AssignmentPattern > ;
425
425
AwaitExpression ?: RuleFunction < TSESTree . AwaitExpression > ;
426
- BigIntLiteral ?: RuleFunction < TSESTree . BigIntLiteral > ;
427
426
BinaryExpression ?: RuleFunction < TSESTree . BinaryExpression > ;
428
427
BlockStatement ?: RuleFunction < TSESTree . BlockStatement > ;
429
428
BreakStatement ?: RuleFunction < TSESTree . BreakStatement > ;
@@ -451,6 +450,7 @@ interface RuleListenerBaseSelectors {
451
450
FunctionExpression ?: RuleFunction < TSESTree . FunctionExpression > ;
452
451
Identifier ?: RuleFunction < TSESTree . Identifier > ;
453
452
IfStatement ?: RuleFunction < TSESTree . IfStatement > ;
453
+ ImportAttribute ?: RuleFunction < TSESTree . ImportAttribute > ;
454
454
ImportDeclaration ?: RuleFunction < TSESTree . ImportDeclaration > ;
455
455
ImportDefaultSpecifier ?: RuleFunction < TSESTree . ImportDefaultSpecifier > ;
456
456
ImportExpression ?: RuleFunction < TSESTree . ImportExpression > ;
@@ -465,6 +465,7 @@ interface RuleListenerBaseSelectors {
465
465
JSXFragment ?: RuleFunction < TSESTree . JSXFragment > ;
466
466
JSXIdentifier ?: RuleFunction < TSESTree . JSXIdentifier > ;
467
467
JSXMemberExpression ?: RuleFunction < TSESTree . JSXMemberExpression > ;
468
+ JSXNamespacedName ?: RuleFunction < TSESTree . JSXNamespacedName > ;
468
469
JSXOpeningElement ?: RuleFunction < TSESTree . JSXOpeningElement > ;
469
470
JSXOpeningFragment ?: RuleFunction < TSESTree . JSXOpeningFragment > ;
470
471
JSXSpreadAttribute ?: RuleFunction < TSESTree . JSXSpreadAttribute > ;
@@ -479,13 +480,15 @@ interface RuleListenerBaseSelectors {
479
480
NewExpression ?: RuleFunction < TSESTree . NewExpression > ;
480
481
ObjectExpression ?: RuleFunction < TSESTree . ObjectExpression > ;
481
482
ObjectPattern ?: RuleFunction < TSESTree . ObjectPattern > ;
483
+ PrivateIdentifier ?: RuleFunction < TSESTree . PrivateIdentifier > ;
482
484
Program ?: RuleFunction < TSESTree . Program > ;
483
485
Property ?: RuleFunction < TSESTree . Property > ;
484
486
PropertyDefinition ?: RuleFunction < TSESTree . PropertyDefinition > ;
485
487
RestElement ?: RuleFunction < TSESTree . RestElement > ;
486
488
ReturnStatement ?: RuleFunction < TSESTree . ReturnStatement > ;
487
489
SequenceExpression ?: RuleFunction < TSESTree . SequenceExpression > ;
488
490
SpreadElement ?: RuleFunction < TSESTree . SpreadElement > ;
491
+ StaticBlock ?: RuleFunction < TSESTree . StaticBlock > ;
489
492
Super ?: RuleFunction < TSESTree . Super > ;
490
493
SwitchCase ?: RuleFunction < TSESTree . SwitchCase > ;
491
494
SwitchStatement ?: RuleFunction < TSESTree . SwitchStatement > ;
@@ -495,6 +498,7 @@ interface RuleListenerBaseSelectors {
495
498
ThisExpression ?: RuleFunction < TSESTree . ThisExpression > ;
496
499
ThrowStatement ?: RuleFunction < TSESTree . ThrowStatement > ;
497
500
TryStatement ?: RuleFunction < TSESTree . TryStatement > ;
501
+ TSAbstractAccessorProperty ?: RuleFunction < TSESTree . TSAbstractAccessorProperty > ;
498
502
TSAbstractKeyword ?: RuleFunction < TSESTree . TSAbstractKeyword > ;
499
503
TSAbstractMethodDefinition ?: RuleFunction < TSESTree . TSAbstractMethodDefinition > ;
500
504
TSAbstractPropertyDefinition ?: RuleFunction < TSESTree . TSAbstractPropertyDefinition > ;
@@ -512,6 +516,7 @@ interface RuleListenerBaseSelectors {
512
516
TSDeclareFunction ?: RuleFunction < TSESTree . TSDeclareFunction > ;
513
517
TSDeclareKeyword ?: RuleFunction < TSESTree . TSDeclareKeyword > ;
514
518
TSEmptyBodyFunctionExpression ?: RuleFunction < TSESTree . TSEmptyBodyFunctionExpression > ;
519
+ TSEnumBody ?: RuleFunction < TSESTree . TSEnumBody > ;
515
520
TSEnumDeclaration ?: RuleFunction < TSESTree . TSEnumDeclaration > ;
516
521
TSEnumMember ?: RuleFunction < TSESTree . TSEnumMember > ;
517
522
TSExportAssignment ?: RuleFunction < TSESTree . TSExportAssignment > ;
@@ -523,15 +528,18 @@ interface RuleListenerBaseSelectors {
523
528
TSIndexedAccessType ?: RuleFunction < TSESTree . TSIndexedAccessType > ;
524
529
TSIndexSignature ?: RuleFunction < TSESTree . TSIndexSignature > ;
525
530
TSInferType ?: RuleFunction < TSESTree . TSInferType > ;
531
+ TSInstantiationExpression ?: RuleFunction < TSESTree . TSInstantiationExpression > ;
526
532
TSInterfaceBody ?: RuleFunction < TSESTree . TSInterfaceBody > ;
527
533
TSInterfaceDeclaration ?: RuleFunction < TSESTree . TSInterfaceDeclaration > ;
528
534
TSInterfaceHeritage ?: RuleFunction < TSESTree . TSInterfaceHeritage > ;
529
535
TSIntersectionType ?: RuleFunction < TSESTree . TSIntersectionType > ;
536
+ TSIntrinsicKeyword ?: RuleFunction < TSESTree . TSIntrinsicKeyword > ;
530
537
TSLiteralType ?: RuleFunction < TSESTree . TSLiteralType > ;
531
538
TSMappedType ?: RuleFunction < TSESTree . TSMappedType > ;
532
539
TSMethodSignature ?: RuleFunction < TSESTree . TSMethodSignature > ;
533
540
TSModuleBlock ?: RuleFunction < TSESTree . TSModuleBlock > ;
534
541
TSModuleDeclaration ?: RuleFunction < TSESTree . TSModuleDeclaration > ;
542
+ TSNamedTupleMember ?: RuleFunction < TSESTree . TSNamedTupleMember > ;
535
543
TSNamespaceExportDeclaration ?: RuleFunction < TSESTree . TSNamespaceExportDeclaration > ;
536
544
TSNeverKeyword ?: RuleFunction < TSESTree . TSNeverKeyword > ;
537
545
TSNonNullExpression ?: RuleFunction < TSESTree . TSNonNullExpression > ;
@@ -551,6 +559,7 @@ interface RuleListenerBaseSelectors {
551
559
TSStaticKeyword ?: RuleFunction < TSESTree . TSStaticKeyword > ;
552
560
TSStringKeyword ?: RuleFunction < TSESTree . TSStringKeyword > ;
553
561
TSSymbolKeyword ?: RuleFunction < TSESTree . TSSymbolKeyword > ;
562
+ TSTemplateLiteralType ?: RuleFunction < TSESTree . TSTemplateLiteralType > ;
554
563
TSThisType ?: RuleFunction < TSESTree . TSThisType > ;
555
564
TSTupleType ?: RuleFunction < TSESTree . TSTupleType > ;
556
565
TSTypeAliasDeclaration ?: RuleFunction < TSESTree . TSTypeAliasDeclaration > ;
0 commit comments