@babel/traverse 8.0.0-beta.4 → 8.0.0-rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.d.ts CHANGED
@@ -105,7 +105,7 @@ declare class Scope {
105
105
  * - `super` expressions
106
106
  * - Bound identifiers
107
107
  */
108
- isStatic(node: t.Node): boolean;
108
+ isStatic(node: t.Node | null): boolean;
109
109
  /**
110
110
  * Possibly generate a memoised identifier if it is not static and has consequences.
111
111
  */
@@ -225,24 +225,12 @@ declare class Hub implements HubInterface {
225
225
  }
226
226
 
227
227
  declare class TraversalContext<S = unknown> {
228
- constructor(scope: Scope | null | undefined, opts: ExplodedTraverseOptions<S>, state: S, parentPath: NodePath_Final | undefined);
229
- parentPath: NodePath_Final | undefined;
230
- scope: Scope | null | undefined;
228
+ constructor(opts: ExplodedTraverseOptions<S>, state: S);
231
229
  state: S;
232
230
  opts: ExplodedTraverseOptions<S>;
233
- queue: NodePath_Final[] | null;
234
- priorityQueue: NodePath_Final[] | null;
235
- /**
236
- * This method does a simple check to determine whether or not we really need to attempt
237
- * visit a node. This will prevent us from constructing a NodePath.
238
- */
239
- shouldVisit(node: t.Node): boolean;
240
- create(node: t.Node, container: t.Node | t.Node[], key: string | number, listKey?: string): NodePath_Final;
241
- maybeQueue(path: NodePath_Final, notPriority?: boolean): void;
242
- visitMultiple(container: t.Node[], parent: t.Node, listKey: string): boolean;
243
- visitSingle(node: t.Node, key: string): boolean;
244
- visitQueue(queue: NodePath_Final[]): boolean;
245
- visit(node: t.Node, key: string): boolean;
231
+ queue: NodePath_Final<t.Node | null>[] | null;
232
+ priorityQueue: NodePath_Final<t.Node | null>[] | null;
233
+ maybeQueue(path: NodePath_Final<t.Node | null>, notPriority?: boolean): void;
246
234
  }
247
235
 
248
236
  interface VirtualTypeAliases {
@@ -411,12 +399,6 @@ interface ExplVisitorBase<S> {
411
399
  OptionalIndexedAccessType?: ExplVisitNode<S, t.OptionalIndexedAccessType>;
412
400
  OptionalMemberExpression?: ExplVisitNode<S, t.OptionalMemberExpression>;
413
401
  ParenthesizedExpression?: ExplVisitNode<S, t.ParenthesizedExpression>;
414
- PipelineBareFunction?: ExplVisitNode<S, t.PipelineBareFunction>;
415
- PipelinePrimaryTopicReference?: ExplVisitNode<
416
- S,
417
- t.PipelinePrimaryTopicReference
418
- >;
419
- PipelineTopicExpression?: ExplVisitNode<S, t.PipelineTopicExpression>;
420
402
  Placeholder?: ExplVisitNode<S, t.Placeholder>;
421
403
  PrivateName?: ExplVisitNode<S, t.PrivateName>;
422
404
  Program?: ExplVisitNode<S, t.Program>;
@@ -680,9 +662,6 @@ interface VisitorBaseNodes<S> {
680
662
  OptionalIndexedAccessType?: VisitNode<S, t.OptionalIndexedAccessType>;
681
663
  OptionalMemberExpression?: VisitNode<S, t.OptionalMemberExpression>;
682
664
  ParenthesizedExpression?: VisitNode<S, t.ParenthesizedExpression>;
683
- PipelineBareFunction?: VisitNode<S, t.PipelineBareFunction>;
684
- PipelinePrimaryTopicReference?: VisitNode<S, t.PipelinePrimaryTopicReference>;
685
- PipelineTopicExpression?: VisitNode<S, t.PipelineTopicExpression>;
686
665
  Placeholder?: VisitNode<S, t.Placeholder>;
687
666
  PrivateName?: VisitNode<S, t.PrivateName>;
688
667
  Program?: VisitNode<S, t.Program>;
@@ -900,7 +879,7 @@ type VisitNodeFunction<S, P extends t.Node> = (this: S, path: NodePath_Final<P>,
900
879
  * to return a truthy value, or `null` if the `callback` never returns a
901
880
  * truthy value.
902
881
  */
903
- declare function findParent(this: NodePath_Final, callback: (path: NodePath_Final) => boolean): NodePath_Final | null;
882
+ declare function findParent(this: NodePath_Final<t.Node | null>, callback: (path: NodePath_Final) => boolean): NodePath_Final | null;
904
883
  /**
905
884
  * Starting at current `NodePath` and going up the tree, return the first
906
885
  * `NodePath` that causes the provided `callback` to return a truthy value,
@@ -910,11 +889,11 @@ declare function find(this: NodePath_Final, callback: (path: NodePath_Final) =>
910
889
  /**
911
890
  * Get the parent function of the current path.
912
891
  */
913
- declare function getFunctionParent(this: NodePath_Final): NodePath_Final<t.Function> | null;
892
+ declare function getFunctionParent(this: NodePath_Final<t.Node | null>): NodePath_Final<t.Function> | null;
914
893
  /**
915
894
  * Walk up the tree until we hit a parent node path in a list.
916
895
  */
917
- declare function getStatementParent(this: NodePath_Final): NodePath_Final<t.Statement>;
896
+ declare function getStatementParent(this: NodePath_Final<t.Node | null>): NodePath_Final<t.Statement>;
918
897
  /**
919
898
  * Get the deepest common ancestor and then from it, get the earliest relationship path
920
899
  * to that ancestor.
@@ -954,7 +933,7 @@ declare function couldBeBaseType(this: NodePath_Final, name: string): boolean;
954
933
  declare function baseTypeStrictlyMatches(this: NodePath_Final, rightArg: NodePath_Final): boolean;
955
934
  declare function isGenericType(this: NodePath_Final, genericName: string): boolean;
956
935
 
957
- declare function replaceWithMultiple<Nodes extends NodeOrNodeList<t.Node>>(this: NodePath_Final, nodes: Nodes): NodePaths<Nodes>;
936
+ declare function replaceWithMultiple<Nodes extends NodeOrNodeList<t.Node>>(this: NodePath_Final<t.Node | null>, nodes: Nodes): NodePaths<Nodes>;
958
937
  /**
959
938
  * Parse a string as an expression and replace the current node with the result.
960
939
  *
@@ -962,19 +941,19 @@ declare function replaceWithMultiple<Nodes extends NodeOrNodeList<t.Node>>(this:
962
941
  * transforming ASTs is an antipattern and SHOULD NOT be encouraged. Even if it's
963
942
  * easier to use, your transforms will be extremely brittle.
964
943
  */
965
- declare function replaceWithSourceString(this: NodePath_Final, replacement: string): [NodePath<t.Identifier, "Identifier", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.BreakStatement | t.CallExpression | t.CatchClause | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassImplements | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.ContinueStatement | t.DeclareClass | t.DeclareFunction | t.DeclareInterface | t.DeclareModule | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclareVariable | t.Decorator | t.DoWhileStatement | t.EnumBooleanMember | t.EnumDeclaration | t.EnumDefaultedMember | t.EnumNumberMember | t.EnumStringMember | t.ExportDefaultDeclaration | t.ExportDefaultSpecifier | t.ExportNamespaceSpecifier | t.ExportSpecifier | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.FunctionDeclaration | t.FunctionExpression | t.FunctionTypeParam | t.GenericTypeAnnotation | t.IfStatement | t.ImportAttribute | t.ImportDefaultSpecifier | t.ImportExpression | t.ImportNamespaceSpecifier | t.ImportSpecifier | t.InterfaceDeclaration | t.InterfaceExtends | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LabeledStatement | t.LogicalExpression | t.MemberExpression | t.MetaProperty | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.OpaqueType | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.Placeholder | t.PrivateName | t.QualifiedTypeIdentifier | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSCallSignatureDeclaration | t.TSClassImplements | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSEnumDeclaration | t.TSEnumMember | t.TSExportAssignment | t.TSFunctionType | t.TSImportEqualsDeclaration | t.TSImportType | t.TSIndexSignature | t.TSInstantiationExpression | t.TSInterfaceDeclaration | t.TSInterfaceHeritage | t.TSMappedType | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNamedTupleMember | t.TSNamespaceExportDeclaration | t.TSNonNullExpression | t.TSParameterProperty | t.TSPropertySignature | t.TSQualifiedName | t.TSSatisfiesExpression | t.TSTypeAliasDeclaration | t.TSTypeAssertion | t.TSTypeParameter | t.TSTypePredicate | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeAlias | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ArrayExpression, "ArrayExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ArrowFunctionExpression, "ArrowFunctionExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AssignmentExpression, "AssignmentExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AwaitExpression, "AwaitExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BigIntLiteral, "BigIntLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BinaryExpression, "BinaryExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BindExpression, "BindExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BooleanLiteral, "BooleanLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.EnumBooleanMember | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.CallExpression, "CallExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ClassExpression, "ClassExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ConditionalExpression, "ConditionalExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.DoExpression, "DoExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.FunctionExpression, "FunctionExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.Import, "Import", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ImportExpression, "ImportExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.JSXElement, "JSXElement", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXAttribute | t.JSXElement | t.JSXExpressionContainer | t.JSXFragment | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.JSXFragment, "JSXFragment", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXAttribute | t.JSXElement | t.JSXExpressionContainer | t.JSXFragment | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.LogicalExpression, "LogicalExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MemberExpressionComputed, "MemberExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MemberExpressionNonComputed, "MemberExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MetaProperty, "MetaProperty", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ModuleExpression, "ModuleExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NewExpression, "NewExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NullLiteral, "NullLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NumericLiteral, "NumericLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.EnumNumberMember | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ObjectExpression, "ObjectExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.OptionalCallExpression, "OptionalCallExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.OptionalMemberExpression, "OptionalMemberExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ParenthesizedExpression, "ParenthesizedExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.PipelineBareFunction, "PipelineBareFunction", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.PipelinePrimaryTopicReference, "PipelinePrimaryTopicReference", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.PipelineTopicExpression, "PipelineTopicExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.RegExpLiteral, "RegExpLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.SequenceExpression, "SequenceExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.StringLiteral, "StringLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.DeclareExportAllDeclaration | t.DeclareExportDeclaration | t.DeclareModule | t.Decorator | t.DoWhileStatement | t.EnumStringMember | t.ExportAllDeclaration | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ExportSpecifier | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportAttribute | t.ImportDeclaration | t.ImportExpression | t.ImportSpecifier | t.JSXAttribute | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.ObjectTypeProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSExternalModuleReference | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSAsExpression, "TSAsExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSInstantiationExpression, "TSInstantiationExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSNonNullExpression, "TSNonNullExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSSatisfiesExpression, "TSSatisfiesExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSTypeAssertion, "TSTypeAssertion", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TaggedTemplateExpression, "TaggedTemplateExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TemplateLiteral, "TemplateLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ThisExpression, "ThisExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSImportEqualsDeclaration | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNonNullExpression | t.TSPropertySignature | t.TSQualifiedName | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TopicReference, "TopicReference", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TypeCastExpression, "TypeCastExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.DeclareExportDeclaration | t.DeclaredPredicate | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.UnaryExpression, "UnaryExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.UpdateExpression, "UpdateExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.YieldExpression, "YieldExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>>];
944
+ declare function replaceWithSourceString(this: NodePath_Final<t.Node | null>, replacement: string): [NodePath<t.Identifier, "Identifier", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.BreakStatement | t.CallExpression | t.CatchClause | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassImplements | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.ContinueStatement | t.DeclareClass | t.DeclareFunction | t.DeclareInterface | t.DeclareModule | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclareVariable | t.Decorator | t.DoWhileStatement | t.EnumBooleanMember | t.EnumDeclaration | t.EnumDefaultedMember | t.EnumNumberMember | t.EnumStringMember | t.ExportDefaultDeclaration | t.ExportDefaultSpecifier | t.ExportNamespaceSpecifier | t.ExportSpecifier | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.FunctionDeclaration | t.FunctionExpression | t.FunctionTypeParam | t.GenericTypeAnnotation | t.IfStatement | t.ImportAttribute | t.ImportDefaultSpecifier | t.ImportExpression | t.ImportNamespaceSpecifier | t.ImportSpecifier | t.InterfaceDeclaration | t.InterfaceExtends | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LabeledStatement | t.LogicalExpression | t.MemberExpression | t.MetaProperty | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.OpaqueType | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.Placeholder | t.PrivateName | t.QualifiedTypeIdentifier | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSCallSignatureDeclaration | t.TSClassImplements | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSEnumDeclaration | t.TSEnumMember | t.TSExportAssignment | t.TSFunctionType | t.TSImportEqualsDeclaration | t.TSImportType | t.TSIndexSignature | t.TSInstantiationExpression | t.TSInterfaceDeclaration | t.TSInterfaceHeritage | t.TSMappedType | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNamedTupleMember | t.TSNamespaceExportDeclaration | t.TSNonNullExpression | t.TSParameterProperty | t.TSPropertySignature | t.TSQualifiedName | t.TSSatisfiesExpression | t.TSTypeAliasDeclaration | t.TSTypeAssertion | t.TSTypeParameter | t.TSTypePredicate | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeAlias | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ArrayExpression, "ArrayExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ArrowFunctionExpression, "ArrowFunctionExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AssignmentExpression, "AssignmentExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AwaitExpression, "AwaitExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BigIntLiteral, "BigIntLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BinaryExpression, "BinaryExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BindExpression, "BindExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BooleanLiteral, "BooleanLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.EnumBooleanMember | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.CallExpression, "CallExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ClassExpression, "ClassExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ConditionalExpression, "ConditionalExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.DoExpression, "DoExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.FunctionExpression, "FunctionExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.Import, "Import", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ImportExpression, "ImportExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.JSXElement, "JSXElement", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXAttribute | t.JSXElement | t.JSXExpressionContainer | t.JSXFragment | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.JSXFragment, "JSXFragment", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXAttribute | t.JSXElement | t.JSXExpressionContainer | t.JSXFragment | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.LogicalExpression, "LogicalExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MemberExpressionComputed, "MemberExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MemberExpressionNonComputed, "MemberExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MetaProperty, "MetaProperty", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ModuleExpression, "ModuleExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NewExpression, "NewExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NullLiteral, "NullLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NumericLiteral, "NumericLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.EnumNumberMember | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ObjectExpression, "ObjectExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.OptionalCallExpression, "OptionalCallExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.OptionalMemberExpression, "OptionalMemberExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ParenthesizedExpression, "ParenthesizedExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.RegExpLiteral, "RegExpLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.SequenceExpression, "SequenceExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.StringLiteral, "StringLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.DeclareExportAllDeclaration | t.DeclareExportDeclaration | t.DeclareModule | t.Decorator | t.DoWhileStatement | t.EnumStringMember | t.ExportAllDeclaration | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ExportSpecifier | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportAttribute | t.ImportDeclaration | t.ImportExpression | t.ImportSpecifier | t.JSXAttribute | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.ObjectTypeProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSExternalModuleReference | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSAsExpression, "TSAsExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSInstantiationExpression, "TSInstantiationExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSNonNullExpression, "TSNonNullExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSSatisfiesExpression, "TSSatisfiesExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSTypeAssertion, "TSTypeAssertion", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TaggedTemplateExpression, "TaggedTemplateExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TemplateLiteral, "TemplateLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ThisExpression, "ThisExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSImportEqualsDeclaration | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNonNullExpression | t.TSPropertySignature | t.TSQualifiedName | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TopicReference, "TopicReference", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TypeCastExpression, "TypeCastExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.DeclareExportDeclaration | t.DeclaredPredicate | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.UnaryExpression, "UnaryExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.UpdateExpression, "UpdateExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.YieldExpression, "YieldExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>>];
966
945
  /**
967
946
  * Replace the current node with another.
968
947
  */
969
- declare function replaceWith<R extends t.Node>(this: NodePath_Final, replacementPath: R): [NodePath_Final<R>];
970
- declare function replaceWith<R extends NodePath_Final>(this: NodePath_Final, replacementPath: R): [R];
948
+ declare function replaceWith<R extends t.Node>(this: NodePath_Final<t.Node | null>, replacementPath: R): [NodePath_Final<R>];
949
+ declare function replaceWith<R extends NodePath_Final<t.Node>>(this: NodePath_Final<t.Node | null>, replacementPath: R): [R];
971
950
  /**
972
951
  * This method takes an array of statements nodes and then explodes it
973
952
  * into expressions. This method retains completion records which is
974
953
  * extremely important to retain original semantics.
975
954
  */
976
- declare function replaceExpressionWithStatements(this: NodePath_Final, nodes: t.Statement[]): NodePath<null, null, never> | (NodePath<t.Identifier, "Identifier", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.BreakStatement | t.CallExpression | t.CatchClause | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassImplements | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.ContinueStatement | t.DeclareClass | t.DeclareFunction | t.DeclareInterface | t.DeclareModule | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclareVariable | t.Decorator | t.DoWhileStatement | t.EnumBooleanMember | t.EnumDeclaration | t.EnumDefaultedMember | t.EnumNumberMember | t.EnumStringMember | t.ExportDefaultDeclaration | t.ExportDefaultSpecifier | t.ExportNamespaceSpecifier | t.ExportSpecifier | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.FunctionDeclaration | t.FunctionExpression | t.FunctionTypeParam | t.GenericTypeAnnotation | t.IfStatement | t.ImportAttribute | t.ImportDefaultSpecifier | t.ImportExpression | t.ImportNamespaceSpecifier | t.ImportSpecifier | t.InterfaceDeclaration | t.InterfaceExtends | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LabeledStatement | t.LogicalExpression | t.MemberExpression | t.MetaProperty | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.OpaqueType | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.Placeholder | t.PrivateName | t.QualifiedTypeIdentifier | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSCallSignatureDeclaration | t.TSClassImplements | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSEnumDeclaration | t.TSEnumMember | t.TSExportAssignment | t.TSFunctionType | t.TSImportEqualsDeclaration | t.TSImportType | t.TSIndexSignature | t.TSInstantiationExpression | t.TSInterfaceDeclaration | t.TSInterfaceHeritage | t.TSMappedType | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNamedTupleMember | t.TSNamespaceExportDeclaration | t.TSNonNullExpression | t.TSParameterProperty | t.TSPropertySignature | t.TSQualifiedName | t.TSSatisfiesExpression | t.TSTypeAliasDeclaration | t.TSTypeAssertion | t.TSTypeParameter | t.TSTypePredicate | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeAlias | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ArrayExpression, "ArrayExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ArrowFunctionExpression, "ArrowFunctionExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AssignmentExpression, "AssignmentExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AwaitExpression, "AwaitExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BigIntLiteral, "BigIntLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BinaryExpression, "BinaryExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BindExpression, "BindExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BooleanLiteral, "BooleanLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.EnumBooleanMember | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.CallExpression, "CallExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ClassExpression, "ClassExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ConditionalExpression, "ConditionalExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.DoExpression, "DoExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.FunctionExpression, "FunctionExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.Import, "Import", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ImportExpression, "ImportExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.JSXElement, "JSXElement", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXAttribute | t.JSXElement | t.JSXExpressionContainer | t.JSXFragment | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.JSXFragment, "JSXFragment", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXAttribute | t.JSXElement | t.JSXExpressionContainer | t.JSXFragment | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.LogicalExpression, "LogicalExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MemberExpressionComputed, "MemberExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MemberExpressionNonComputed, "MemberExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MetaProperty, "MetaProperty", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ModuleExpression, "ModuleExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NewExpression, "NewExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NullLiteral, "NullLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NumericLiteral, "NumericLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.EnumNumberMember | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ObjectExpression, "ObjectExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.OptionalCallExpression, "OptionalCallExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.OptionalMemberExpression, "OptionalMemberExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ParenthesizedExpression, "ParenthesizedExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.PipelineBareFunction, "PipelineBareFunction", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.PipelinePrimaryTopicReference, "PipelinePrimaryTopicReference", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.PipelineTopicExpression, "PipelineTopicExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.RegExpLiteral, "RegExpLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.SequenceExpression, "SequenceExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.StringLiteral, "StringLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.DeclareExportAllDeclaration | t.DeclareExportDeclaration | t.DeclareModule | t.Decorator | t.DoWhileStatement | t.EnumStringMember | t.ExportAllDeclaration | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ExportSpecifier | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportAttribute | t.ImportDeclaration | t.ImportExpression | t.ImportSpecifier | t.JSXAttribute | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.ObjectTypeProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSExternalModuleReference | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSAnyKeyword, "TSAnyKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSArrayType, "TSArrayType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSAsExpression, "TSAsExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSBigIntKeyword, "TSBigIntKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSBooleanKeyword, "TSBooleanKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSClassImplements, "TSClassImplements", NonNullable<t.ClassDeclaration | t.ClassExpression | t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSInterfaceDeclaration | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSConditionalType, "TSConditionalType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSConstructorType, "TSConstructorType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSFunctionType, "TSFunctionType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSImportType, "TSImportType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSTypeQuery | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSIndexedAccessType, "TSIndexedAccessType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSInferType, "TSInferType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSInstantiationExpression, "TSInstantiationExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSInterfaceHeritage, "TSInterfaceHeritage", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSIntersectionType, "TSIntersectionType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSIntrinsicKeyword, "TSIntrinsicKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSLiteralType, "TSLiteralType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSMappedType, "TSMappedType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSNeverKeyword, "TSNeverKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSNonNullExpression, "TSNonNullExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSNullKeyword, "TSNullKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSNumberKeyword, "TSNumberKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSObjectKeyword, "TSObjectKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSOptionalType, "TSOptionalType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSParenthesizedType, "TSParenthesizedType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSRestType, "TSRestType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSSatisfiesExpression, "TSSatisfiesExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSStringKeyword, "TSStringKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSSymbolKeyword, "TSSymbolKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTemplateLiteralType, "TSTemplateLiteralType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSThisType, "TSThisType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSTypePredicate | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTupleType, "TSTupleType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeAssertion, "TSTypeAssertion", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSTypeLiteral, "TSTypeLiteral", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeOperator, "TSTypeOperator", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypePredicate, "TSTypePredicate", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeQuery, "TSTypeQuery", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeReference, "TSTypeReference", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSUndefinedKeyword, "TSUndefinedKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSUnionType, "TSUnionType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSUnknownKeyword, "TSUnknownKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSVoidKeyword, "TSVoidKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TaggedTemplateExpression, "TaggedTemplateExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TemplateLiteral, "TemplateLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ThisExpression, "ThisExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSImportEqualsDeclaration | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNonNullExpression | t.TSPropertySignature | t.TSQualifiedName | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TopicReference, "TopicReference", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TypeCastExpression, "TypeCastExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.DeclareExportDeclaration | t.DeclaredPredicate | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.UnaryExpression, "UnaryExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.UpdateExpression, "UpdateExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.YieldExpression, "YieldExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>>)[] | (NodePath<t.BlockStatement, "BlockStatement", NonNullable<t.ArrowFunctionExpression | t.BlockStatement | t.CatchClause | t.ClassMethod | t.ClassPrivateMethod | t.DeclareModule | t.DoExpression | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.FunctionDeclaration | t.FunctionExpression | t.IfStatement | t.LabeledStatement | t.ObjectMethod | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.TryStatement | t.WhileStatement | t.WithStatement>> | NodePath<t.BreakStatement, "BreakStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ClassDeclaration, "ClassDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ContinueStatement, "ContinueStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DebuggerStatement, "DebuggerStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareClass, "DeclareClass", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareExportAllDeclaration, "DeclareExportAllDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareExportDeclaration, "DeclareExportDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareFunction, "DeclareFunction", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareInterface, "DeclareInterface", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareModule, "DeclareModule", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareModuleExports, "DeclareModuleExports", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareOpaqueType, "DeclareOpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareTypeAlias, "DeclareTypeAlias", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareVariable, "DeclareVariable", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DoWhileStatement, "DoWhileStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.EmptyStatement, "EmptyStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.EnumDeclaration, "EnumDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExportAllDeclaration, "ExportAllDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExportDefaultDeclaration, "ExportDefaultDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExportNamedDeclaration, "ExportNamedDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExpressionStatement, "ExpressionStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ForInStatement, "ForInStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ForOfStatement, "ForOfStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ForStatement, "ForStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.FunctionDeclaration, "FunctionDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.IfStatement, "IfStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ImportDeclaration, "ImportDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.InterfaceDeclaration, "InterfaceDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.LabeledStatement, "LabeledStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.OpaqueType, "OpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ReturnStatement, "ReturnStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.SwitchStatement, "SwitchStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSDeclareFunction, "TSDeclareFunction", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSEnumDeclaration, "TSEnumDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSExportAssignment, "TSExportAssignment", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSImportEqualsDeclaration, "TSImportEqualsDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSInterfaceDeclaration, "TSInterfaceDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSModuleDeclaration, "TSModuleDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSNamespaceExportDeclaration, "TSNamespaceExportDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSTypeAliasDeclaration, "TSTypeAliasDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ThrowStatement, "ThrowStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TryStatement, "TryStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TypeAlias, "TypeAlias", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.VariableDeclaration, "VariableDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.WhileStatement, "WhileStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.WithStatement, "WithStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>>)[];
977
- declare function replaceInline(this: NodePath_Final, nodes: t.Node | t.Node[]): (NodePath<t.Identifier, "Identifier", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.BreakStatement | t.CallExpression | t.CatchClause | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassImplements | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.ContinueStatement | t.DeclareClass | t.DeclareFunction | t.DeclareInterface | t.DeclareModule | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclareVariable | t.Decorator | t.DoWhileStatement | t.EnumBooleanMember | t.EnumDeclaration | t.EnumDefaultedMember | t.EnumNumberMember | t.EnumStringMember | t.ExportDefaultDeclaration | t.ExportDefaultSpecifier | t.ExportNamespaceSpecifier | t.ExportSpecifier | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.FunctionDeclaration | t.FunctionExpression | t.FunctionTypeParam | t.GenericTypeAnnotation | t.IfStatement | t.ImportAttribute | t.ImportDefaultSpecifier | t.ImportExpression | t.ImportNamespaceSpecifier | t.ImportSpecifier | t.InterfaceDeclaration | t.InterfaceExtends | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LabeledStatement | t.LogicalExpression | t.MemberExpression | t.MetaProperty | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.OpaqueType | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.Placeholder | t.PrivateName | t.QualifiedTypeIdentifier | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSCallSignatureDeclaration | t.TSClassImplements | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSEnumDeclaration | t.TSEnumMember | t.TSExportAssignment | t.TSFunctionType | t.TSImportEqualsDeclaration | t.TSImportType | t.TSIndexSignature | t.TSInstantiationExpression | t.TSInterfaceDeclaration | t.TSInterfaceHeritage | t.TSMappedType | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNamedTupleMember | t.TSNamespaceExportDeclaration | t.TSNonNullExpression | t.TSParameterProperty | t.TSPropertySignature | t.TSQualifiedName | t.TSSatisfiesExpression | t.TSTypeAliasDeclaration | t.TSTypeAssertion | t.TSTypeParameter | t.TSTypePredicate | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeAlias | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AnyTypeAnnotation, "AnyTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ArgumentPlaceholder, "ArgumentPlaceholder", NonNullable<t.CallExpression | t.NewExpression | t.OptionalCallExpression>> | NodePath<t.ArrayExpression, "ArrayExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ArrayPattern, "ArrayPattern", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.CatchClause | t.ClassMethod | t.ClassPrivateMethod | t.ForInStatement | t.ForOfStatement | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectProperty | t.RestElement | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSMethodSignature | t.VariableDeclarator>> | NodePath<t.ArrayTypeAnnotation, "ArrayTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ArrowFunctionExpression, "ArrowFunctionExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AssignmentExpression, "AssignmentExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AssignmentPattern, "AssignmentPattern", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.ClassMethod | t.ClassPrivateMethod | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectProperty | t.TSDeclareFunction | t.TSDeclareMethod | t.TSParameterProperty>> | NodePath<t.AwaitExpression, "AwaitExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BigIntLiteral, "BigIntLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BinaryExpression, "BinaryExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BindExpression, "BindExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BlockStatement, "BlockStatement", NonNullable<t.ArrowFunctionExpression | t.BlockStatement | t.CatchClause | t.ClassMethod | t.ClassPrivateMethod | t.DeclareModule | t.DoExpression | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.FunctionDeclaration | t.FunctionExpression | t.IfStatement | t.LabeledStatement | t.ObjectMethod | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.TryStatement | t.WhileStatement | t.WithStatement>> | NodePath<t.BooleanLiteral, "BooleanLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.EnumBooleanMember | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BooleanLiteralTypeAnnotation, "BooleanLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.BooleanTypeAnnotation, "BooleanTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.BreakStatement, "BreakStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.CallExpression, "CallExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.CatchClause, "CatchClause", t.TryStatement> | NodePath<t.ClassAccessorPropertyComputed, "ClassAccessorProperty", t.ClassBody> | NodePath<t.ClassAccessorPropertyNonComputed, "ClassAccessorProperty", t.ClassBody> | NodePath<t.ClassBody, "ClassBody", NonNullable<t.ClassDeclaration | t.ClassExpression>> | NodePath<t.ClassDeclaration, "ClassDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ClassExpression, "ClassExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ClassImplements, "ClassImplements", NonNullable<t.ClassDeclaration | t.ClassExpression | t.DeclareClass | t.DeclareExportDeclaration | t.DeclaredPredicate>> | NodePath<t.ClassMethodComputed, "ClassMethod", t.ClassBody> | NodePath<t.ClassMethodNonComputed, "ClassMethod", t.ClassBody> | NodePath<t.ClassPrivateMethod, "ClassPrivateMethod", t.ClassBody> | NodePath<t.ClassPrivateProperty, "ClassPrivateProperty", t.ClassBody> | NodePath<t.ClassPropertyComputed, "ClassProperty", t.ClassBody> | NodePath<t.ClassPropertyNonComputed, "ClassProperty", t.ClassBody> | NodePath<t.ConditionalExpression, "ConditionalExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ContinueStatement, "ContinueStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DebuggerStatement, "DebuggerStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareClass, "DeclareClass", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareExportAllDeclaration, "DeclareExportAllDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareExportDeclaration, "DeclareExportDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareFunction, "DeclareFunction", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareInterface, "DeclareInterface", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareModule, "DeclareModule", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareModuleExports, "DeclareModuleExports", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareOpaqueType, "DeclareOpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareTypeAlias, "DeclareTypeAlias", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareVariable, "DeclareVariable", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclaredPredicate, "DeclaredPredicate", NonNullable<t.ArrowFunctionExpression | t.DeclareExportDeclaration | t.DeclareFunction | t.DeclaredPredicate | t.FunctionDeclaration | t.FunctionExpression>> | NodePath<t.Decorator, "Decorator", NonNullable<t.Identifier | t.ArrayPattern | t.AssignmentPattern | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.ObjectMethod | t.ObjectPattern | t.ObjectProperty | t.Placeholder | t.RestElement | t.TSDeclareMethod | t.TSParameterProperty>> | NodePath<t.Directive, "Directive", NonNullable<t.BlockStatement | t.Program>> | NodePath<t.DirectiveLiteral, "DirectiveLiteral", t.Directive> | NodePath<t.DoExpression, "DoExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.DoWhileStatement, "DoWhileStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.EmptyStatement, "EmptyStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.EmptyTypeAnnotation, "EmptyTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.EnumBooleanBody, "EnumBooleanBody", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumDeclaration>> | NodePath<t.EnumBooleanMember, "EnumBooleanMember", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumBooleanBody>> | NodePath<t.EnumDeclaration, "EnumDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.EnumDefaultedMember, "EnumDefaultedMember", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumStringBody | t.EnumSymbolBody>> | NodePath<t.EnumNumberBody, "EnumNumberBody", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumDeclaration>> | NodePath<t.EnumNumberMember, "EnumNumberMember", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumNumberBody>> | NodePath<t.EnumStringBody, "EnumStringBody", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumDeclaration>> | NodePath<t.EnumStringMember, "EnumStringMember", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumStringBody>> | NodePath<t.EnumSymbolBody, "EnumSymbolBody", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumDeclaration>> | NodePath<t.ExistsTypeAnnotation, "ExistsTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ExportAllDeclaration, "ExportAllDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExportDefaultDeclaration, "ExportDefaultDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExportDefaultSpecifier, "ExportDefaultSpecifier", t.ExportNamedDeclaration> | NodePath<t.ExportNamedDeclaration, "ExportNamedDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExportNamespaceSpecifier, "ExportNamespaceSpecifier", NonNullable<t.DeclareExportDeclaration | t.ExportNamedDeclaration>> | NodePath<t.ExportSpecifier, "ExportSpecifier", NonNullable<t.DeclareExportDeclaration | t.ExportNamedDeclaration>> | NodePath<t.ExpressionStatement, "ExpressionStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.File, "File", never> | NodePath<t.ForInStatement, "ForInStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ForOfStatement, "ForOfStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ForStatement, "ForStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.FunctionDeclaration, "FunctionDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.FunctionExpression, "FunctionExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.FunctionTypeAnnotation, "FunctionTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.FunctionTypeParam, "FunctionTypeParam", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.FunctionTypeAnnotation>> | NodePath<t.GenericTypeAnnotation, "GenericTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.IfStatement, "IfStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.Import, "Import", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ImportAttribute, "ImportAttribute", NonNullable<t.DeclareExportAllDeclaration | t.DeclareExportDeclaration | t.ExportAllDeclaration | t.ExportNamedDeclaration | t.ImportDeclaration>> | NodePath<t.ImportDeclaration, "ImportDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ImportDefaultSpecifier, "ImportDefaultSpecifier", t.ImportDeclaration> | NodePath<t.ImportExpression, "ImportExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ImportNamespaceSpecifier, "ImportNamespaceSpecifier", t.ImportDeclaration> | NodePath<t.ImportSpecifier, "ImportSpecifier", t.ImportDeclaration> | NodePath<t.IndexedAccessType, "IndexedAccessType", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.InferredPredicate, "InferredPredicate", NonNullable<t.ArrowFunctionExpression | t.DeclareExportDeclaration | t.DeclaredPredicate | t.FunctionDeclaration | t.FunctionExpression>> | NodePath<t.InterfaceDeclaration, "InterfaceDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.InterfaceExtends, "InterfaceExtends", NonNullable<t.ClassDeclaration | t.ClassExpression | t.DeclareClass | t.DeclareExportDeclaration | t.DeclareInterface | t.DeclaredPredicate | t.InterfaceDeclaration | t.InterfaceTypeAnnotation>> | NodePath<t.InterfaceTypeAnnotation, "InterfaceTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.InterpreterDirective, "InterpreterDirective", t.Program> | NodePath<t.IntersectionTypeAnnotation, "IntersectionTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.JSXAttribute, "JSXAttribute", t.JSXOpeningElement> | NodePath<t.JSXClosingElement, "JSXClosingElement", t.JSXElement> | NodePath<t.JSXClosingFragment, "JSXClosingFragment", t.JSXFragment> | NodePath<t.JSXElement, "JSXElement", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXAttribute | t.JSXElement | t.JSXExpressionContainer | t.JSXFragment | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.JSXEmptyExpression, "JSXEmptyExpression", t.JSXExpressionContainer> | NodePath<t.JSXExpressionContainer, "JSXExpressionContainer", NonNullable<t.JSXAttribute | t.JSXElement | t.JSXFragment>> | NodePath<t.JSXFragment, "JSXFragment", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXAttribute | t.JSXElement | t.JSXExpressionContainer | t.JSXFragment | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.JSXIdentifier, "JSXIdentifier", NonNullable<t.JSXAttribute | t.JSXClosingElement | t.JSXMemberExpression | t.JSXNamespacedName | t.JSXOpeningElement>> | NodePath<t.JSXMemberExpression, "JSXMemberExpression", NonNullable<t.JSXClosingElement | t.JSXMemberExpression | t.JSXOpeningElement>> | NodePath<t.JSXNamespacedName, "JSXNamespacedName", NonNullable<t.JSXAttribute | t.JSXClosingElement | t.JSXOpeningElement>> | NodePath<t.JSXOpeningElement, "JSXOpeningElement", t.JSXElement> | NodePath<t.JSXOpeningFragment, "JSXOpeningFragment", t.JSXFragment> | NodePath<t.JSXSpreadAttribute, "JSXSpreadAttribute", t.JSXOpeningElement> | NodePath<t.JSXSpreadChild, "JSXSpreadChild", NonNullable<t.JSXElement | t.JSXFragment>> | NodePath<t.JSXText, "JSXText", NonNullable<t.JSXElement | t.JSXFragment>> | NodePath<t.LabeledStatement, "LabeledStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.LogicalExpression, "LogicalExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MemberExpressionComputed, "MemberExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MemberExpressionNonComputed, "MemberExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MetaProperty, "MetaProperty", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MixedTypeAnnotation, "MixedTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ModuleExpression, "ModuleExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NewExpression, "NewExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NullLiteral, "NullLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NullLiteralTypeAnnotation, "NullLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.NullableTypeAnnotation, "NullableTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.NumberLiteral, "NumberLiteral", never> | NodePath<t.NumberLiteralTypeAnnotation, "NumberLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.NumberTypeAnnotation, "NumberTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.NumericLiteral, "NumericLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.EnumNumberMember | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ObjectExpression, "ObjectExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ObjectMethodComputed, "ObjectMethod", t.ObjectExpression> | NodePath<t.ObjectMethodNonComputed, "ObjectMethod", t.ObjectExpression> | NodePath<t.ObjectPattern, "ObjectPattern", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.CatchClause | t.ClassMethod | t.ClassPrivateMethod | t.ForInStatement | t.ForOfStatement | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectProperty | t.RestElement | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSMethodSignature | t.VariableDeclarator>> | NodePath<t.ObjectPropertyComputed, "ObjectProperty", NonNullable<t.ObjectExpression | t.ObjectPattern>> | NodePath<t.ObjectPropertyNonComputed, "ObjectProperty", NonNullable<t.ObjectExpression | t.ObjectPattern>> | NodePath<t.ObjectTypeAnnotation, "ObjectTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareClass | t.DeclareExportDeclaration | t.DeclareInterface | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.InterfaceDeclaration | t.InterfaceTypeAnnotation | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ObjectTypeCallProperty, "ObjectTypeCallProperty", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeIndexer, "ObjectTypeIndexer", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeInternalSlot, "ObjectTypeInternalSlot", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeProperty, "ObjectTypeProperty", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeSpreadProperty, "ObjectTypeSpreadProperty", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.OpaqueType, "OpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.OptionalCallExpression, "OptionalCallExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.OptionalIndexedAccessType, "OptionalIndexedAccessType", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.OptionalMemberExpression, "OptionalMemberExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ParenthesizedExpression, "ParenthesizedExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.PipelineBareFunction, "PipelineBareFunction", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.PipelinePrimaryTopicReference, "PipelinePrimaryTopicReference", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.PipelineTopicExpression, "PipelineTopicExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.Placeholder, "Placeholder", NonNullable<t.Node>> | NodePath<t.PrivateName, "PrivateName", NonNullable<t.BinaryExpression | t.ClassAccessorProperty | t.ClassPrivateMethod | t.ClassPrivateProperty | t.MemberExpression | t.ObjectProperty>> | NodePath<t.Program, "Program", NonNullable<t.File | t.ModuleExpression>> | NodePath<t.QualifiedTypeIdentifier, "QualifiedTypeIdentifier", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.GenericTypeAnnotation | t.InterfaceExtends | t.QualifiedTypeIdentifier>> | NodePath<t.RegExpLiteral, "RegExpLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.RegexLiteral, "RegexLiteral", never> | NodePath<t.RestElement, "RestElement", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.ClassMethod | t.ClassPrivateMethod | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectPattern | t.ObjectProperty | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSMethodSignature>> | NodePath<t.RestProperty, "RestProperty", never> | NodePath<t.ReturnStatement, "ReturnStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.SequenceExpression, "SequenceExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.SpreadElement, "SpreadElement", NonNullable<t.ArrayExpression | t.CallExpression | t.NewExpression | t.ObjectExpression | t.OptionalCallExpression>> | NodePath<t.SpreadProperty, "SpreadProperty", never> | NodePath<t.StaticBlock, "StaticBlock", t.ClassBody> | NodePath<t.StringLiteral, "StringLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.DeclareExportAllDeclaration | t.DeclareExportDeclaration | t.DeclareModule | t.Decorator | t.DoWhileStatement | t.EnumStringMember | t.ExportAllDeclaration | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ExportSpecifier | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportAttribute | t.ImportDeclaration | t.ImportExpression | t.ImportSpecifier | t.JSXAttribute | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.ObjectTypeProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSExternalModuleReference | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.StringLiteralTypeAnnotation, "StringLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.StringTypeAnnotation, "StringTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.Super, "Super", NonNullable<t.CallExpression | t.MemberExpression | t.NewExpression>> | NodePath<t.SwitchCase, "SwitchCase", t.SwitchStatement> | NodePath<t.SwitchStatement, "SwitchStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.SymbolTypeAnnotation, "SymbolTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.TSAnyKeyword, "TSAnyKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSArrayType, "TSArrayType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSAsExpression, "TSAsExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSBigIntKeyword, "TSBigIntKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSBooleanKeyword, "TSBooleanKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSCallSignatureDeclaration, "TSCallSignatureDeclaration", NonNullable<t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSClassImplements, "TSClassImplements", NonNullable<t.ClassDeclaration | t.ClassExpression | t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSInterfaceDeclaration | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSConditionalType, "TSConditionalType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSConstructSignatureDeclaration, "TSConstructSignatureDeclaration", NonNullable<t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSConstructorType, "TSConstructorType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSDeclareFunction, "TSDeclareFunction", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSDeclareMethodComputed, "TSDeclareMethod", t.ClassBody> | NodePath<t.TSDeclareMethodNonComputed, "TSDeclareMethod", t.ClassBody> | NodePath<t.TSEnumBody, "TSEnumBody", t.TSEnumDeclaration> | NodePath<t.TSEnumDeclaration, "TSEnumDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSEnumMember, "TSEnumMember", t.TSEnumBody> | NodePath<t.TSExportAssignment, "TSExportAssignment", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSExternalModuleReference, "TSExternalModuleReference", t.TSImportEqualsDeclaration> | NodePath<t.TSFunctionType, "TSFunctionType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSImportEqualsDeclaration, "TSImportEqualsDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSImportType, "TSImportType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSTypeQuery | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSIndexSignature, "TSIndexSignature", NonNullable<t.ClassBody | t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSIndexedAccessType, "TSIndexedAccessType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSInferType, "TSInferType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSInstantiationExpression, "TSInstantiationExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSInterfaceBody, "TSInterfaceBody", t.TSInterfaceDeclaration> | NodePath<t.TSInterfaceDeclaration, "TSInterfaceDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSInterfaceHeritage, "TSInterfaceHeritage", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSIntersectionType, "TSIntersectionType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSIntrinsicKeyword, "TSIntrinsicKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSLiteralType, "TSLiteralType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSMappedType, "TSMappedType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSMethodSignature, "TSMethodSignature", NonNullable<t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSModuleBlock, "TSModuleBlock", t.TSModuleDeclaration> | NodePath<t.TSModuleDeclaration, "TSModuleDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSNamedTupleMember, "TSNamedTupleMember", t.TSTupleType> | NodePath<t.TSNamespaceExportDeclaration, "TSNamespaceExportDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSNeverKeyword, "TSNeverKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSNonNullExpression, "TSNonNullExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSNullKeyword, "TSNullKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSNumberKeyword, "TSNumberKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSObjectKeyword, "TSObjectKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSOptionalType, "TSOptionalType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSParameterProperty, "TSParameterProperty", NonNullable<t.ClassMethod | t.ClassPrivateMethod | t.TSDeclareMethod>> | NodePath<t.TSParenthesizedType, "TSParenthesizedType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSPropertySignature, "TSPropertySignature", NonNullable<t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSQualifiedName, "TSQualifiedName", NonNullable<t.TSImportEqualsDeclaration | t.TSImportType | t.TSModuleDeclaration | t.TSQualifiedName | t.TSTypeQuery | t.TSTypeReference>> | NodePath<t.TSRestType, "TSRestType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSSatisfiesExpression, "TSSatisfiesExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSStringKeyword, "TSStringKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSSymbolKeyword, "TSSymbolKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTemplateLiteralType, "TSTemplateLiteralType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSThisType, "TSThisType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSTypePredicate | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTupleType, "TSTupleType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeAliasDeclaration, "TSTypeAliasDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSTypeAnnotation, "TSTypeAnnotation", NonNullable<t.Identifier | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentPattern | t.ClassAccessorProperty | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectPattern | t.Placeholder | t.RestElement | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSIndexSignature | t.TSMethodSignature | t.TSPropertySignature | t.TSTypePredicate>> | NodePath<t.TSTypeAssertion, "TSTypeAssertion", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSTypeLiteral, "TSTypeLiteral", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeOperator, "TSTypeOperator", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeParameter, "TSTypeParameter", NonNullable<t.TSInferType | t.TSTypeParameterDeclaration>> | NodePath<t.TSTypeParameterDeclaration, "TSTypeParameterDeclaration", NonNullable<t.ArrowFunctionExpression | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateMethod | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSInterfaceDeclaration | t.TSMethodSignature | t.TSTypeAliasDeclaration>> | NodePath<t.TSTypeParameterInstantiation, "TSTypeParameterInstantiation", NonNullable<t.CallExpression | t.ClassDeclaration | t.ClassExpression | t.JSXOpeningElement | t.NewExpression | t.OptionalCallExpression | t.TSClassImplements | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression>> | NodePath<t.TSTypePredicate, "TSTypePredicate", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeQuery, "TSTypeQuery", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeReference, "TSTypeReference", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSUndefinedKeyword, "TSUndefinedKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSUnionType, "TSUnionType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSUnknownKeyword, "TSUnknownKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSVoidKeyword, "TSVoidKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TaggedTemplateExpression, "TaggedTemplateExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TemplateElement, "TemplateElement", NonNullable<t.TSTemplateLiteralType | t.TemplateLiteral>> | NodePath<t.TemplateLiteral, "TemplateLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ThisExpression, "ThisExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSImportEqualsDeclaration | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNonNullExpression | t.TSPropertySignature | t.TSQualifiedName | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ThisTypeAnnotation, "ThisTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ThrowStatement, "ThrowStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TopicReference, "TopicReference", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TryStatement, "TryStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TupleTypeAnnotation, "TupleTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.TypeAlias, "TypeAlias", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TypeAnnotation, "TypeAnnotation", NonNullable<t.Identifier | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentPattern | t.ClassAccessorProperty | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.DeclareExportDeclaration | t.DeclareModuleExports | t.DeclaredPredicate | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectPattern | t.Placeholder | t.RestElement | t.TypeCastExpression | t.TypeParameter>> | NodePath<t.TypeCastExpression, "TypeCastExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.DeclareExportDeclaration | t.DeclaredPredicate | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TypeParameter, "TypeParameter", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.TypeParameterDeclaration>> | NodePath<t.TypeParameterDeclaration, "TypeParameterDeclaration", NonNullable<t.ArrowFunctionExpression | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateMethod | t.DeclareClass | t.DeclareExportDeclaration | t.DeclareInterface | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionDeclaration | t.FunctionExpression | t.FunctionTypeAnnotation | t.InterfaceDeclaration | t.ObjectMethod | t.OpaqueType | t.TypeAlias>> | NodePath<t.TypeParameterInstantiation, "TypeParameterInstantiation", NonNullable<t.CallExpression | t.ClassDeclaration | t.ClassExpression | t.ClassImplements | t.DeclareExportDeclaration | t.DeclaredPredicate | t.GenericTypeAnnotation | t.InterfaceExtends | t.JSXOpeningElement | t.NewExpression | t.OptionalCallExpression | t.TaggedTemplateExpression>> | NodePath<t.TypeofTypeAnnotation, "TypeofTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.UnaryExpression, "UnaryExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.UnionTypeAnnotation, "UnionTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.UpdateExpression, "UpdateExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.V8IntrinsicIdentifier, "V8IntrinsicIdentifier", NonNullable<t.CallExpression | t.NewExpression>> | NodePath<t.VariableDeclaration, "VariableDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.VariableDeclarator, "VariableDeclarator", t.VariableDeclaration> | NodePath<t.Variance, "Variance", NonNullable<t.ClassAccessorProperty | t.ClassPrivateProperty | t.ClassProperty | t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeIndexer | t.ObjectTypeProperty | t.TypeParameter>> | NodePath<t.VoidPattern, "VoidPattern", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.ClassMethod | t.ClassPrivateMethod | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectProperty | t.TSDeclareFunction | t.TSDeclareMethod | t.VariableDeclarator>> | NodePath<t.VoidTypeAnnotation, "VoidTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.WhileStatement, "WhileStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.WithStatement, "WithStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.YieldExpression, "YieldExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>>)[];
955
+ declare function replaceExpressionWithStatements(this: NodePath_Final<t.Node | null>, nodes: t.Statement[]): NodePath<null, null, never> | (NodePath<t.Identifier, "Identifier", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.BreakStatement | t.CallExpression | t.CatchClause | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassImplements | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.ContinueStatement | t.DeclareClass | t.DeclareFunction | t.DeclareInterface | t.DeclareModule | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclareVariable | t.Decorator | t.DoWhileStatement | t.EnumBooleanMember | t.EnumDeclaration | t.EnumDefaultedMember | t.EnumNumberMember | t.EnumStringMember | t.ExportDefaultDeclaration | t.ExportDefaultSpecifier | t.ExportNamespaceSpecifier | t.ExportSpecifier | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.FunctionDeclaration | t.FunctionExpression | t.FunctionTypeParam | t.GenericTypeAnnotation | t.IfStatement | t.ImportAttribute | t.ImportDefaultSpecifier | t.ImportExpression | t.ImportNamespaceSpecifier | t.ImportSpecifier | t.InterfaceDeclaration | t.InterfaceExtends | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LabeledStatement | t.LogicalExpression | t.MemberExpression | t.MetaProperty | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.OpaqueType | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.Placeholder | t.PrivateName | t.QualifiedTypeIdentifier | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSCallSignatureDeclaration | t.TSClassImplements | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSEnumDeclaration | t.TSEnumMember | t.TSExportAssignment | t.TSFunctionType | t.TSImportEqualsDeclaration | t.TSImportType | t.TSIndexSignature | t.TSInstantiationExpression | t.TSInterfaceDeclaration | t.TSInterfaceHeritage | t.TSMappedType | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNamedTupleMember | t.TSNamespaceExportDeclaration | t.TSNonNullExpression | t.TSParameterProperty | t.TSPropertySignature | t.TSQualifiedName | t.TSSatisfiesExpression | t.TSTypeAliasDeclaration | t.TSTypeAssertion | t.TSTypeParameter | t.TSTypePredicate | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeAlias | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ArrayExpression, "ArrayExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ArrowFunctionExpression, "ArrowFunctionExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AssignmentExpression, "AssignmentExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AwaitExpression, "AwaitExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BigIntLiteral, "BigIntLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BinaryExpression, "BinaryExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BindExpression, "BindExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BooleanLiteral, "BooleanLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.EnumBooleanMember | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.CallExpression, "CallExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ClassExpression, "ClassExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ConditionalExpression, "ConditionalExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.DoExpression, "DoExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.FunctionExpression, "FunctionExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.Import, "Import", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ImportExpression, "ImportExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.JSXElement, "JSXElement", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXAttribute | t.JSXElement | t.JSXExpressionContainer | t.JSXFragment | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.JSXFragment, "JSXFragment", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXAttribute | t.JSXElement | t.JSXExpressionContainer | t.JSXFragment | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.LogicalExpression, "LogicalExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MemberExpressionComputed, "MemberExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MemberExpressionNonComputed, "MemberExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MetaProperty, "MetaProperty", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ModuleExpression, "ModuleExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NewExpression, "NewExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NullLiteral, "NullLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NumericLiteral, "NumericLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.EnumNumberMember | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ObjectExpression, "ObjectExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.OptionalCallExpression, "OptionalCallExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.OptionalMemberExpression, "OptionalMemberExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ParenthesizedExpression, "ParenthesizedExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.RegExpLiteral, "RegExpLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.SequenceExpression, "SequenceExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.StringLiteral, "StringLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.DeclareExportAllDeclaration | t.DeclareExportDeclaration | t.DeclareModule | t.Decorator | t.DoWhileStatement | t.EnumStringMember | t.ExportAllDeclaration | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ExportSpecifier | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportAttribute | t.ImportDeclaration | t.ImportExpression | t.ImportSpecifier | t.JSXAttribute | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.ObjectTypeProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSExternalModuleReference | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSAnyKeyword, "TSAnyKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSArrayType, "TSArrayType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSAsExpression, "TSAsExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSBigIntKeyword, "TSBigIntKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSBooleanKeyword, "TSBooleanKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSClassImplements, "TSClassImplements", NonNullable<t.ClassDeclaration | t.ClassExpression | t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSInterfaceDeclaration | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSConditionalType, "TSConditionalType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSConstructorType, "TSConstructorType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSFunctionType, "TSFunctionType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSImportType, "TSImportType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSTypeQuery | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSIndexedAccessType, "TSIndexedAccessType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSInferType, "TSInferType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSInstantiationExpression, "TSInstantiationExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSInterfaceHeritage, "TSInterfaceHeritage", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSIntersectionType, "TSIntersectionType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSIntrinsicKeyword, "TSIntrinsicKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSLiteralType, "TSLiteralType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSMappedType, "TSMappedType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSNeverKeyword, "TSNeverKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSNonNullExpression, "TSNonNullExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSNullKeyword, "TSNullKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSNumberKeyword, "TSNumberKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSObjectKeyword, "TSObjectKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSOptionalType, "TSOptionalType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSParenthesizedType, "TSParenthesizedType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSRestType, "TSRestType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSSatisfiesExpression, "TSSatisfiesExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSStringKeyword, "TSStringKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSSymbolKeyword, "TSSymbolKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTemplateLiteralType, "TSTemplateLiteralType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSThisType, "TSThisType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSTypePredicate | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTupleType, "TSTupleType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeAssertion, "TSTypeAssertion", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSTypeLiteral, "TSTypeLiteral", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeOperator, "TSTypeOperator", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypePredicate, "TSTypePredicate", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeQuery, "TSTypeQuery", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeReference, "TSTypeReference", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSUndefinedKeyword, "TSUndefinedKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSUnionType, "TSUnionType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSUnknownKeyword, "TSUnknownKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSVoidKeyword, "TSVoidKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TaggedTemplateExpression, "TaggedTemplateExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TemplateLiteral, "TemplateLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ThisExpression, "ThisExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSImportEqualsDeclaration | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNonNullExpression | t.TSPropertySignature | t.TSQualifiedName | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TopicReference, "TopicReference", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TypeCastExpression, "TypeCastExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.DeclareExportDeclaration | t.DeclaredPredicate | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.UnaryExpression, "UnaryExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.UpdateExpression, "UpdateExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.YieldExpression, "YieldExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>>)[] | (NodePath<t.BlockStatement, "BlockStatement", NonNullable<t.ArrowFunctionExpression | t.BlockStatement | t.CatchClause | t.ClassMethod | t.ClassPrivateMethod | t.DeclareModule | t.DoExpression | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.FunctionDeclaration | t.FunctionExpression | t.IfStatement | t.LabeledStatement | t.ObjectMethod | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.TryStatement | t.WhileStatement | t.WithStatement>> | NodePath<t.BreakStatement, "BreakStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ClassDeclaration, "ClassDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ContinueStatement, "ContinueStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DebuggerStatement, "DebuggerStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareClass, "DeclareClass", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareExportAllDeclaration, "DeclareExportAllDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareExportDeclaration, "DeclareExportDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareFunction, "DeclareFunction", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareInterface, "DeclareInterface", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareModule, "DeclareModule", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareModuleExports, "DeclareModuleExports", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareOpaqueType, "DeclareOpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareTypeAlias, "DeclareTypeAlias", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareVariable, "DeclareVariable", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DoWhileStatement, "DoWhileStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.EmptyStatement, "EmptyStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.EnumDeclaration, "EnumDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExportAllDeclaration, "ExportAllDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExportDefaultDeclaration, "ExportDefaultDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExportNamedDeclaration, "ExportNamedDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExpressionStatement, "ExpressionStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ForInStatement, "ForInStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ForOfStatement, "ForOfStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ForStatement, "ForStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.FunctionDeclaration, "FunctionDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.IfStatement, "IfStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ImportDeclaration, "ImportDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.InterfaceDeclaration, "InterfaceDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.LabeledStatement, "LabeledStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.OpaqueType, "OpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ReturnStatement, "ReturnStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.SwitchStatement, "SwitchStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSDeclareFunction, "TSDeclareFunction", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSEnumDeclaration, "TSEnumDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSExportAssignment, "TSExportAssignment", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSImportEqualsDeclaration, "TSImportEqualsDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSInterfaceDeclaration, "TSInterfaceDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSModuleDeclaration, "TSModuleDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSNamespaceExportDeclaration, "TSNamespaceExportDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSTypeAliasDeclaration, "TSTypeAliasDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ThrowStatement, "ThrowStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TryStatement, "TryStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TypeAlias, "TypeAlias", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.VariableDeclaration, "VariableDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.WhileStatement, "WhileStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.WithStatement, "WithStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>>)[];
956
+ declare function replaceInline(this: NodePath_Final<t.Node | null>, nodes: t.Node | t.Node[]): (NodePath<t.Identifier, "Identifier", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.BreakStatement | t.CallExpression | t.CatchClause | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassImplements | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.ContinueStatement | t.DeclareClass | t.DeclareFunction | t.DeclareInterface | t.DeclareModule | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclareVariable | t.Decorator | t.DoWhileStatement | t.EnumBooleanMember | t.EnumDeclaration | t.EnumDefaultedMember | t.EnumNumberMember | t.EnumStringMember | t.ExportDefaultDeclaration | t.ExportDefaultSpecifier | t.ExportNamespaceSpecifier | t.ExportSpecifier | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.FunctionDeclaration | t.FunctionExpression | t.FunctionTypeParam | t.GenericTypeAnnotation | t.IfStatement | t.ImportAttribute | t.ImportDefaultSpecifier | t.ImportExpression | t.ImportNamespaceSpecifier | t.ImportSpecifier | t.InterfaceDeclaration | t.InterfaceExtends | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LabeledStatement | t.LogicalExpression | t.MemberExpression | t.MetaProperty | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.OpaqueType | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.Placeholder | t.PrivateName | t.QualifiedTypeIdentifier | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSCallSignatureDeclaration | t.TSClassImplements | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSEnumDeclaration | t.TSEnumMember | t.TSExportAssignment | t.TSFunctionType | t.TSImportEqualsDeclaration | t.TSImportType | t.TSIndexSignature | t.TSInstantiationExpression | t.TSInterfaceDeclaration | t.TSInterfaceHeritage | t.TSMappedType | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNamedTupleMember | t.TSNamespaceExportDeclaration | t.TSNonNullExpression | t.TSParameterProperty | t.TSPropertySignature | t.TSQualifiedName | t.TSSatisfiesExpression | t.TSTypeAliasDeclaration | t.TSTypeAssertion | t.TSTypeParameter | t.TSTypePredicate | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeAlias | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AnyTypeAnnotation, "AnyTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ArgumentPlaceholder, "ArgumentPlaceholder", NonNullable<t.CallExpression | t.NewExpression | t.OptionalCallExpression>> | NodePath<t.ArrayExpression, "ArrayExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ArrayPattern, "ArrayPattern", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.CatchClause | t.ClassMethod | t.ClassPrivateMethod | t.ForInStatement | t.ForOfStatement | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectProperty | t.RestElement | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSMethodSignature | t.VariableDeclarator>> | NodePath<t.ArrayTypeAnnotation, "ArrayTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ArrowFunctionExpression, "ArrowFunctionExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AssignmentExpression, "AssignmentExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AssignmentPattern, "AssignmentPattern", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.ClassMethod | t.ClassPrivateMethod | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectProperty | t.TSDeclareFunction | t.TSDeclareMethod | t.TSParameterProperty>> | NodePath<t.AwaitExpression, "AwaitExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BigIntLiteral, "BigIntLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BinaryExpression, "BinaryExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BindExpression, "BindExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BlockStatement, "BlockStatement", NonNullable<t.ArrowFunctionExpression | t.BlockStatement | t.CatchClause | t.ClassMethod | t.ClassPrivateMethod | t.DeclareModule | t.DoExpression | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.FunctionDeclaration | t.FunctionExpression | t.IfStatement | t.LabeledStatement | t.ObjectMethod | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.TryStatement | t.WhileStatement | t.WithStatement>> | NodePath<t.BooleanLiteral, "BooleanLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.EnumBooleanMember | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BooleanLiteralTypeAnnotation, "BooleanLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.BooleanTypeAnnotation, "BooleanTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.BreakStatement, "BreakStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.CallExpression, "CallExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.CatchClause, "CatchClause", t.TryStatement> | NodePath<t.ClassAccessorPropertyComputed, "ClassAccessorProperty", t.ClassBody> | NodePath<t.ClassAccessorPropertyNonComputed, "ClassAccessorProperty", t.ClassBody> | NodePath<t.ClassBody, "ClassBody", NonNullable<t.ClassDeclaration | t.ClassExpression>> | NodePath<t.ClassDeclaration, "ClassDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ClassExpression, "ClassExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ClassImplements, "ClassImplements", NonNullable<t.ClassDeclaration | t.ClassExpression | t.DeclareClass | t.DeclareExportDeclaration | t.DeclaredPredicate>> | NodePath<t.ClassMethodComputed, "ClassMethod", t.ClassBody> | NodePath<t.ClassMethodNonComputed, "ClassMethod", t.ClassBody> | NodePath<t.ClassPrivateMethod, "ClassPrivateMethod", t.ClassBody> | NodePath<t.ClassPrivateProperty, "ClassPrivateProperty", t.ClassBody> | NodePath<t.ClassPropertyComputed, "ClassProperty", t.ClassBody> | NodePath<t.ClassPropertyNonComputed, "ClassProperty", t.ClassBody> | NodePath<t.ConditionalExpression, "ConditionalExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ContinueStatement, "ContinueStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DebuggerStatement, "DebuggerStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareClass, "DeclareClass", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareExportAllDeclaration, "DeclareExportAllDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareExportDeclaration, "DeclareExportDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareFunction, "DeclareFunction", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareInterface, "DeclareInterface", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareModule, "DeclareModule", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareModuleExports, "DeclareModuleExports", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareOpaqueType, "DeclareOpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareTypeAlias, "DeclareTypeAlias", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareVariable, "DeclareVariable", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclaredPredicate, "DeclaredPredicate", NonNullable<t.ArrowFunctionExpression | t.DeclareExportDeclaration | t.DeclareFunction | t.DeclaredPredicate | t.FunctionDeclaration | t.FunctionExpression>> | NodePath<t.Decorator, "Decorator", NonNullable<t.Identifier | t.ArrayPattern | t.AssignmentPattern | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.ObjectMethod | t.ObjectPattern | t.ObjectProperty | t.Placeholder | t.RestElement | t.TSDeclareMethod | t.TSParameterProperty>> | NodePath<t.Directive, "Directive", NonNullable<t.BlockStatement | t.Program>> | NodePath<t.DirectiveLiteral, "DirectiveLiteral", t.Directive> | NodePath<t.DoExpression, "DoExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.DoWhileStatement, "DoWhileStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.EmptyStatement, "EmptyStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.EmptyTypeAnnotation, "EmptyTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.EnumBooleanBody, "EnumBooleanBody", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumDeclaration>> | NodePath<t.EnumBooleanMember, "EnumBooleanMember", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumBooleanBody>> | NodePath<t.EnumDeclaration, "EnumDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.EnumDefaultedMember, "EnumDefaultedMember", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumStringBody | t.EnumSymbolBody>> | NodePath<t.EnumNumberBody, "EnumNumberBody", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumDeclaration>> | NodePath<t.EnumNumberMember, "EnumNumberMember", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumNumberBody>> | NodePath<t.EnumStringBody, "EnumStringBody", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumDeclaration>> | NodePath<t.EnumStringMember, "EnumStringMember", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumStringBody>> | NodePath<t.EnumSymbolBody, "EnumSymbolBody", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumDeclaration>> | NodePath<t.ExistsTypeAnnotation, "ExistsTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ExportAllDeclaration, "ExportAllDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExportDefaultDeclaration, "ExportDefaultDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExportDefaultSpecifier, "ExportDefaultSpecifier", t.ExportNamedDeclaration> | NodePath<t.ExportNamedDeclaration, "ExportNamedDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExportNamespaceSpecifier, "ExportNamespaceSpecifier", NonNullable<t.DeclareExportDeclaration | t.ExportNamedDeclaration>> | NodePath<t.ExportSpecifier, "ExportSpecifier", NonNullable<t.DeclareExportDeclaration | t.ExportNamedDeclaration>> | NodePath<t.ExpressionStatement, "ExpressionStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.File, "File", never> | NodePath<t.ForInStatement, "ForInStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ForOfStatement, "ForOfStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ForStatement, "ForStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.FunctionDeclaration, "FunctionDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.FunctionExpression, "FunctionExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.FunctionTypeAnnotation, "FunctionTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.FunctionTypeParam, "FunctionTypeParam", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.FunctionTypeAnnotation>> | NodePath<t.GenericTypeAnnotation, "GenericTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.IfStatement, "IfStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.Import, "Import", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ImportAttribute, "ImportAttribute", NonNullable<t.DeclareExportAllDeclaration | t.DeclareExportDeclaration | t.ExportAllDeclaration | t.ExportNamedDeclaration | t.ImportDeclaration>> | NodePath<t.ImportDeclaration, "ImportDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ImportDefaultSpecifier, "ImportDefaultSpecifier", t.ImportDeclaration> | NodePath<t.ImportExpression, "ImportExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ImportNamespaceSpecifier, "ImportNamespaceSpecifier", t.ImportDeclaration> | NodePath<t.ImportSpecifier, "ImportSpecifier", t.ImportDeclaration> | NodePath<t.IndexedAccessType, "IndexedAccessType", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.InferredPredicate, "InferredPredicate", NonNullable<t.ArrowFunctionExpression | t.DeclareExportDeclaration | t.DeclaredPredicate | t.FunctionDeclaration | t.FunctionExpression>> | NodePath<t.InterfaceDeclaration, "InterfaceDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.InterfaceExtends, "InterfaceExtends", NonNullable<t.ClassDeclaration | t.ClassExpression | t.DeclareClass | t.DeclareExportDeclaration | t.DeclareInterface | t.DeclaredPredicate | t.InterfaceDeclaration | t.InterfaceTypeAnnotation>> | NodePath<t.InterfaceTypeAnnotation, "InterfaceTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.InterpreterDirective, "InterpreterDirective", t.Program> | NodePath<t.IntersectionTypeAnnotation, "IntersectionTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.JSXAttribute, "JSXAttribute", t.JSXOpeningElement> | NodePath<t.JSXClosingElement, "JSXClosingElement", t.JSXElement> | NodePath<t.JSXClosingFragment, "JSXClosingFragment", t.JSXFragment> | NodePath<t.JSXElement, "JSXElement", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXAttribute | t.JSXElement | t.JSXExpressionContainer | t.JSXFragment | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.JSXEmptyExpression, "JSXEmptyExpression", t.JSXExpressionContainer> | NodePath<t.JSXExpressionContainer, "JSXExpressionContainer", NonNullable<t.JSXAttribute | t.JSXElement | t.JSXFragment>> | NodePath<t.JSXFragment, "JSXFragment", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXAttribute | t.JSXElement | t.JSXExpressionContainer | t.JSXFragment | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.JSXIdentifier, "JSXIdentifier", NonNullable<t.JSXAttribute | t.JSXClosingElement | t.JSXMemberExpression | t.JSXNamespacedName | t.JSXOpeningElement>> | NodePath<t.JSXMemberExpression, "JSXMemberExpression", NonNullable<t.JSXClosingElement | t.JSXMemberExpression | t.JSXOpeningElement>> | NodePath<t.JSXNamespacedName, "JSXNamespacedName", NonNullable<t.JSXAttribute | t.JSXClosingElement | t.JSXOpeningElement>> | NodePath<t.JSXOpeningElement, "JSXOpeningElement", t.JSXElement> | NodePath<t.JSXOpeningFragment, "JSXOpeningFragment", t.JSXFragment> | NodePath<t.JSXSpreadAttribute, "JSXSpreadAttribute", t.JSXOpeningElement> | NodePath<t.JSXSpreadChild, "JSXSpreadChild", NonNullable<t.JSXElement | t.JSXFragment>> | NodePath<t.JSXText, "JSXText", NonNullable<t.JSXElement | t.JSXFragment>> | NodePath<t.LabeledStatement, "LabeledStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.LogicalExpression, "LogicalExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MemberExpressionComputed, "MemberExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MemberExpressionNonComputed, "MemberExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MetaProperty, "MetaProperty", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MixedTypeAnnotation, "MixedTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ModuleExpression, "ModuleExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NewExpression, "NewExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NullLiteral, "NullLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NullLiteralTypeAnnotation, "NullLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.NullableTypeAnnotation, "NullableTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.NumberLiteral, "NumberLiteral", never> | NodePath<t.NumberLiteralTypeAnnotation, "NumberLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.NumberTypeAnnotation, "NumberTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.NumericLiteral, "NumericLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.EnumNumberMember | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ObjectExpression, "ObjectExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ObjectMethodComputed, "ObjectMethod", t.ObjectExpression> | NodePath<t.ObjectMethodNonComputed, "ObjectMethod", t.ObjectExpression> | NodePath<t.ObjectPattern, "ObjectPattern", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.CatchClause | t.ClassMethod | t.ClassPrivateMethod | t.ForInStatement | t.ForOfStatement | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectProperty | t.RestElement | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSMethodSignature | t.VariableDeclarator>> | NodePath<t.ObjectPropertyComputed, "ObjectProperty", NonNullable<t.ObjectExpression | t.ObjectPattern>> | NodePath<t.ObjectPropertyNonComputed, "ObjectProperty", NonNullable<t.ObjectExpression | t.ObjectPattern>> | NodePath<t.ObjectTypeAnnotation, "ObjectTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareClass | t.DeclareExportDeclaration | t.DeclareInterface | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.InterfaceDeclaration | t.InterfaceTypeAnnotation | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ObjectTypeCallProperty, "ObjectTypeCallProperty", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeIndexer, "ObjectTypeIndexer", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeInternalSlot, "ObjectTypeInternalSlot", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeProperty, "ObjectTypeProperty", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeSpreadProperty, "ObjectTypeSpreadProperty", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.OpaqueType, "OpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.OptionalCallExpression, "OptionalCallExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.OptionalIndexedAccessType, "OptionalIndexedAccessType", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.OptionalMemberExpression, "OptionalMemberExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ParenthesizedExpression, "ParenthesizedExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.Placeholder, "Placeholder", NonNullable<t.Node>> | NodePath<t.PrivateName, "PrivateName", NonNullable<t.BinaryExpression | t.ClassAccessorProperty | t.ClassPrivateMethod | t.ClassPrivateProperty | t.MemberExpression | t.ObjectProperty>> | NodePath<t.Program, "Program", NonNullable<t.File | t.ModuleExpression>> | NodePath<t.QualifiedTypeIdentifier, "QualifiedTypeIdentifier", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.GenericTypeAnnotation | t.InterfaceExtends | t.QualifiedTypeIdentifier>> | NodePath<t.RegExpLiteral, "RegExpLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.RegexLiteral, "RegexLiteral", never> | NodePath<t.RestElement, "RestElement", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.ClassMethod | t.ClassPrivateMethod | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectPattern | t.ObjectProperty | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSMethodSignature>> | NodePath<t.RestProperty, "RestProperty", never> | NodePath<t.ReturnStatement, "ReturnStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.SequenceExpression, "SequenceExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.SpreadElement, "SpreadElement", NonNullable<t.ArrayExpression | t.CallExpression | t.NewExpression | t.ObjectExpression | t.OptionalCallExpression>> | NodePath<t.SpreadProperty, "SpreadProperty", never> | NodePath<t.StaticBlock, "StaticBlock", t.ClassBody> | NodePath<t.StringLiteral, "StringLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.DeclareExportAllDeclaration | t.DeclareExportDeclaration | t.DeclareModule | t.Decorator | t.DoWhileStatement | t.EnumStringMember | t.ExportAllDeclaration | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ExportSpecifier | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportAttribute | t.ImportDeclaration | t.ImportExpression | t.ImportSpecifier | t.JSXAttribute | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.ObjectTypeProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSExternalModuleReference | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.StringLiteralTypeAnnotation, "StringLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.StringTypeAnnotation, "StringTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.Super, "Super", NonNullable<t.CallExpression | t.MemberExpression | t.NewExpression>> | NodePath<t.SwitchCase, "SwitchCase", t.SwitchStatement> | NodePath<t.SwitchStatement, "SwitchStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.SymbolTypeAnnotation, "SymbolTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.TSAnyKeyword, "TSAnyKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSArrayType, "TSArrayType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSAsExpression, "TSAsExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSBigIntKeyword, "TSBigIntKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSBooleanKeyword, "TSBooleanKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSCallSignatureDeclaration, "TSCallSignatureDeclaration", NonNullable<t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSClassImplements, "TSClassImplements", NonNullable<t.ClassDeclaration | t.ClassExpression | t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSInterfaceDeclaration | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSConditionalType, "TSConditionalType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSConstructSignatureDeclaration, "TSConstructSignatureDeclaration", NonNullable<t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSConstructorType, "TSConstructorType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSDeclareFunction, "TSDeclareFunction", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSDeclareMethodComputed, "TSDeclareMethod", t.ClassBody> | NodePath<t.TSDeclareMethodNonComputed, "TSDeclareMethod", t.ClassBody> | NodePath<t.TSEnumBody, "TSEnumBody", t.TSEnumDeclaration> | NodePath<t.TSEnumDeclaration, "TSEnumDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSEnumMember, "TSEnumMember", t.TSEnumBody> | NodePath<t.TSExportAssignment, "TSExportAssignment", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSExternalModuleReference, "TSExternalModuleReference", t.TSImportEqualsDeclaration> | NodePath<t.TSFunctionType, "TSFunctionType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSImportEqualsDeclaration, "TSImportEqualsDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSImportType, "TSImportType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSTypeQuery | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSIndexSignature, "TSIndexSignature", NonNullable<t.ClassBody | t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSIndexedAccessType, "TSIndexedAccessType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSInferType, "TSInferType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSInstantiationExpression, "TSInstantiationExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSInterfaceBody, "TSInterfaceBody", t.TSInterfaceDeclaration> | NodePath<t.TSInterfaceDeclaration, "TSInterfaceDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSInterfaceHeritage, "TSInterfaceHeritage", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSIntersectionType, "TSIntersectionType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSIntrinsicKeyword, "TSIntrinsicKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSLiteralType, "TSLiteralType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSMappedType, "TSMappedType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSMethodSignature, "TSMethodSignature", NonNullable<t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSModuleBlock, "TSModuleBlock", t.TSModuleDeclaration> | NodePath<t.TSModuleDeclaration, "TSModuleDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSNamedTupleMember, "TSNamedTupleMember", t.TSTupleType> | NodePath<t.TSNamespaceExportDeclaration, "TSNamespaceExportDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSNeverKeyword, "TSNeverKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSNonNullExpression, "TSNonNullExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSNullKeyword, "TSNullKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSNumberKeyword, "TSNumberKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSObjectKeyword, "TSObjectKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSOptionalType, "TSOptionalType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSParameterProperty, "TSParameterProperty", NonNullable<t.ClassMethod | t.ClassPrivateMethod | t.TSDeclareMethod>> | NodePath<t.TSParenthesizedType, "TSParenthesizedType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSPropertySignature, "TSPropertySignature", NonNullable<t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSQualifiedName, "TSQualifiedName", NonNullable<t.TSImportEqualsDeclaration | t.TSImportType | t.TSModuleDeclaration | t.TSQualifiedName | t.TSTypeQuery | t.TSTypeReference>> | NodePath<t.TSRestType, "TSRestType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSSatisfiesExpression, "TSSatisfiesExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSStringKeyword, "TSStringKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSSymbolKeyword, "TSSymbolKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTemplateLiteralType, "TSTemplateLiteralType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSThisType, "TSThisType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSTypePredicate | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTupleType, "TSTupleType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeAliasDeclaration, "TSTypeAliasDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSTypeAnnotation, "TSTypeAnnotation", NonNullable<t.Identifier | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentPattern | t.ClassAccessorProperty | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectPattern | t.Placeholder | t.RestElement | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSIndexSignature | t.TSMethodSignature | t.TSPropertySignature | t.TSTypePredicate>> | NodePath<t.TSTypeAssertion, "TSTypeAssertion", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSTypeLiteral, "TSTypeLiteral", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeOperator, "TSTypeOperator", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeParameter, "TSTypeParameter", NonNullable<t.TSInferType | t.TSTypeParameterDeclaration>> | NodePath<t.TSTypeParameterDeclaration, "TSTypeParameterDeclaration", NonNullable<t.ArrowFunctionExpression | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateMethod | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSInterfaceDeclaration | t.TSMethodSignature | t.TSTypeAliasDeclaration>> | NodePath<t.TSTypeParameterInstantiation, "TSTypeParameterInstantiation", NonNullable<t.CallExpression | t.ClassDeclaration | t.ClassExpression | t.JSXOpeningElement | t.NewExpression | t.OptionalCallExpression | t.TSClassImplements | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression>> | NodePath<t.TSTypePredicate, "TSTypePredicate", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeQuery, "TSTypeQuery", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeReference, "TSTypeReference", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSUndefinedKeyword, "TSUndefinedKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSUnionType, "TSUnionType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSUnknownKeyword, "TSUnknownKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSVoidKeyword, "TSVoidKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TaggedTemplateExpression, "TaggedTemplateExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TemplateElement, "TemplateElement", NonNullable<t.TSTemplateLiteralType | t.TemplateLiteral>> | NodePath<t.TemplateLiteral, "TemplateLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ThisExpression, "ThisExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSImportEqualsDeclaration | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNonNullExpression | t.TSPropertySignature | t.TSQualifiedName | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ThisTypeAnnotation, "ThisTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ThrowStatement, "ThrowStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TopicReference, "TopicReference", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TryStatement, "TryStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TupleTypeAnnotation, "TupleTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.TypeAlias, "TypeAlias", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TypeAnnotation, "TypeAnnotation", NonNullable<t.Identifier | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentPattern | t.ClassAccessorProperty | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.DeclareExportDeclaration | t.DeclareModuleExports | t.DeclaredPredicate | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectPattern | t.Placeholder | t.RestElement | t.TypeCastExpression | t.TypeParameter>> | NodePath<t.TypeCastExpression, "TypeCastExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.DeclareExportDeclaration | t.DeclaredPredicate | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TypeParameter, "TypeParameter", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.TypeParameterDeclaration>> | NodePath<t.TypeParameterDeclaration, "TypeParameterDeclaration", NonNullable<t.ArrowFunctionExpression | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateMethod | t.DeclareClass | t.DeclareExportDeclaration | t.DeclareInterface | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionDeclaration | t.FunctionExpression | t.FunctionTypeAnnotation | t.InterfaceDeclaration | t.ObjectMethod | t.OpaqueType | t.TypeAlias>> | NodePath<t.TypeParameterInstantiation, "TypeParameterInstantiation", NonNullable<t.CallExpression | t.ClassDeclaration | t.ClassExpression | t.ClassImplements | t.DeclareExportDeclaration | t.DeclaredPredicate | t.GenericTypeAnnotation | t.InterfaceExtends | t.JSXOpeningElement | t.NewExpression | t.OptionalCallExpression | t.TaggedTemplateExpression>> | NodePath<t.TypeofTypeAnnotation, "TypeofTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.UnaryExpression, "UnaryExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.UnionTypeAnnotation, "UnionTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.UpdateExpression, "UpdateExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.V8IntrinsicIdentifier, "V8IntrinsicIdentifier", NonNullable<t.CallExpression | t.NewExpression>> | NodePath<t.VariableDeclaration, "VariableDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.VariableDeclarator, "VariableDeclarator", t.VariableDeclaration> | NodePath<t.Variance, "Variance", NonNullable<t.ClassAccessorProperty | t.ClassPrivateProperty | t.ClassProperty | t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeIndexer | t.ObjectTypeProperty | t.TypeParameter>> | NodePath<t.VoidPattern, "VoidPattern", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.ClassMethod | t.ClassPrivateMethod | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectProperty | t.TSDeclareFunction | t.TSDeclareMethod | t.VariableDeclarator>> | NodePath<t.VoidTypeAnnotation, "VoidTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.WhileStatement, "WhileStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.WithStatement, "WithStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.YieldExpression, "YieldExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>>)[];
978
957
 
979
958
  /**
980
959
  * Walk the input `node` and statically evaluate if it's truthy.
@@ -1047,7 +1026,7 @@ declare function isStatic(this: NodePath_Final): boolean;
1047
1026
  * Check the type against our stored internal type of the node. This is handy when a node has
1048
1027
  * been removed yet we still internally know the type and need it to calculate node replacement.
1049
1028
  */
1050
- declare function isNodeType(this: NodePath_Final, type: string): boolean;
1029
+ declare function isNodeType(this: NodePath_Final<t.Node | null>, type: string): boolean;
1051
1030
  /**
1052
1031
  * This checks whether or not we're in one of the following positions:
1053
1032
  *
@@ -1057,7 +1036,7 @@ declare function isNodeType(this: NodePath_Final, type: string): boolean;
1057
1036
  * This is because these spots allow VariableDeclarations AND normal expressions so we need
1058
1037
  * to tell the path replacement that it's ok to replace this with an expression.
1059
1038
  */
1060
- declare function canHaveVariableDeclarationOrExpression(this: NodePath_Final): boolean;
1039
+ declare function canHaveVariableDeclarationOrExpression(this: NodePath_Final<t.Node | null>): boolean;
1061
1040
  /**
1062
1041
  * This checks whether we are swapping an arrow function's body between an
1063
1042
  * expression and a block statement (or vice versa).
@@ -1065,7 +1044,7 @@ declare function canHaveVariableDeclarationOrExpression(this: NodePath_Final): b
1065
1044
  * This is because arrow functions may implicitly return an expression, which
1066
1045
  * is the same as containing a block statement.
1067
1046
  */
1068
- declare function canSwapBetweenExpressionAndStatement(this: NodePath_Final, replacement: t.Node): boolean;
1047
+ declare function canSwapBetweenExpressionAndStatement(this: NodePath_Final<t.Node | null>, replacement: t.Node): boolean;
1069
1048
  /**
1070
1049
  * Check whether the current path references a completion record
1071
1050
  */
@@ -1074,7 +1053,7 @@ declare function isCompletionRecord(this: NodePath_Final, allowInsideFunction?:
1074
1053
  * Check whether or not the current `key` allows either a single statement or block statement
1075
1054
  * so we can explode it if necessary.
1076
1055
  */
1077
- declare function isStatementOrBlock(this: NodePath_Final): boolean;
1056
+ declare function isStatementOrBlock(this: NodePath_Final<t.Node | null>): boolean;
1078
1057
  /**
1079
1058
  * Check if the currently assigned path references the `importName` of `moduleSource`.
1080
1059
  */
@@ -1103,29 +1082,28 @@ declare function _guessExecutionStatusRelativeTo(this: NodePath_Final, target: N
1103
1082
  * `b.resolve()` will return `1`
1104
1083
  */
1105
1084
  declare function resolve(this: NodePath_Final, dangerous?: boolean, resolved?: NodePath_Final[]): NodePath_Final;
1106
- declare function isConstantExpression(this: NodePath_Final): boolean;
1107
- declare function isInStrictMode(this: NodePath_Final): boolean;
1085
+ declare function isConstantExpression(this: NodePath_Final<t.Node | null>): boolean;
1086
+ declare function isInStrictMode(this: NodePath_Final<t.Node | null>): boolean;
1108
1087
 
1109
1088
  declare function isDenylisted(this: NodePath_Final): boolean;
1110
- declare function visit(this: NodePath_Final): boolean;
1111
1089
  declare function skip(this: NodePath_Final): void;
1112
1090
  declare function skipKey(this: NodePath_Final, key: string): void;
1113
1091
  declare function stop(this: NodePath_Final): void;
1114
1092
  declare function setContext<S = unknown>(this: NodePath_Final, context?: TraversalContext<S>): NodePath_Final;
1115
- declare function requeue(this: NodePath_Final, pathToQueue?: NodePath_Final): void;
1093
+ declare function requeue(this: NodePath_Final<t.Node | null>, pathToQueue?: NodePath_Final<t.Node | null>): void;
1116
1094
  declare function requeueComputedKeyAndDecorators(this: NodePath_Final<t.Method | t.Property>): void;
1117
1095
 
1118
- declare function remove(this: NodePath_Final): void;
1096
+ declare function remove(this: NodePath_Final<t.Node | null>): void;
1119
1097
 
1120
1098
  /**
1121
1099
  * Insert the provided nodes before the current one.
1122
1100
  */
1123
- declare function insertBefore<Nodes extends NodeOrNodeList<t.Node>>(this: NodePath_Final, nodes_: Nodes): NodePaths<Nodes>;
1101
+ declare function insertBefore<Nodes extends NodeOrNodeList<t.Node>>(this: NodePath_Final<t.Node | null>, nodes_: Nodes): NodePaths<Nodes>;
1124
1102
  /**
1125
1103
  * Insert the provided nodes after the current one. When inserting nodes after an
1126
1104
  * expression, ensure that the completion record is correct by pushing the current node.
1127
1105
  */
1128
- declare function insertAfter<Nodes extends NodeOrNodeList<t.Node>>(this: NodePath_Final, nodes_: Nodes): NodePaths<Nodes>;
1106
+ declare function insertAfter<Nodes extends NodeOrNodeList<t.Node>>(this: NodePath_Final<t.Node | null>, nodes_: Nodes): NodePaths<Nodes>;
1129
1107
  type NodeKeyOfArrays<N extends t.Node> = {
1130
1108
  [P in string & keyof N]-?: N[P] extends (t.Node | null)[] ? P : never;
1131
1109
  }[string & keyof N];
@@ -1145,11 +1123,11 @@ declare function getOpposite(this: NodePath_Final): NodePath_Final | null;
1145
1123
  * @returns {NodePath[]} Completion records
1146
1124
  */
1147
1125
  declare function getCompletionRecords(this: NodePath_Final, shouldPreserveBreak?: boolean): NodePath_Final[];
1148
- declare function getSibling(this: NodePath_Final, key: string | number): NodePath_Final;
1149
- declare function getPrevSibling(this: NodePath_Final): NodePath_Final;
1150
- declare function getNextSibling(this: NodePath_Final): NodePath_Final;
1151
- declare function getAllNextSiblings(this: NodePath_Final): NodePath_Final[];
1152
- declare function getAllPrevSiblings(this: NodePath_Final): NodePath_Final[];
1126
+ declare function getSibling(this: NodePath_Final<t.Node | null>, key: string | number): NodePath_Final;
1127
+ declare function getPrevSibling(this: NodePath_Final<t.Node | null>): NodePath_Final;
1128
+ declare function getNextSibling(this: NodePath_Final<t.Node | null>): NodePath_Final;
1129
+ declare function getAllNextSiblings(this: NodePath_Final<t.Node | null>): NodePath_Final[];
1130
+ declare function getAllPrevSiblings(this: NodePath_Final<t.Node | null>): NodePath_Final[];
1153
1131
  type MaybeToIndex<T extends string> = T extends `${bigint}` ? number : T;
1154
1132
  type Pattern<Obj extends string, Prop extends string> = `${Obj}.${Prop}`;
1155
1133
  type Split<P extends string> = P extends Pattern<infer O, infer U> ? [MaybeToIndex<O>, ...Split<U>] : [MaybeToIndex<P>];
@@ -1180,7 +1158,7 @@ declare function getOuterBindingIdentifierPaths(duplicates?: boolean): Record<st
1180
1158
  /**
1181
1159
  * Share comments amongst siblings.
1182
1160
  */
1183
- declare function shareCommentsWithSiblings(this: NodePath_Final): void;
1161
+ declare function shareCommentsWithSiblings(this: NodePath_Final<t.Node | null>): void;
1184
1162
  declare function addComment(this: NodePath_Final, type: t.CommentTypeShorthand, content: string, line?: boolean): void;
1185
1163
  /**
1186
1164
  * Give node `comments` of the specified `type`.
@@ -1747,19 +1725,6 @@ interface NodePathAssertions {
1747
1725
  assertPatternLike<Opts extends Options$2<t.PatternLike>>(
1748
1726
  opts?: Opts,
1749
1727
  ): asserts this is NodePath_Final<t.PatternLike & Opts>;
1750
- assertPipelineBareFunction<Opts extends Options$2<t.PipelineBareFunction>>(
1751
- opts?: Opts,
1752
- ): asserts this is NodePath_Final<t.PipelineBareFunction & Opts>;
1753
- assertPipelinePrimaryTopicReference<
1754
- Opts extends Options$2<t.PipelinePrimaryTopicReference>,
1755
- >(
1756
- opts?: Opts,
1757
- ): asserts this is NodePath_Final<t.PipelinePrimaryTopicReference & Opts>;
1758
- assertPipelineTopicExpression<
1759
- Opts extends Options$2<t.PipelineTopicExpression>,
1760
- >(
1761
- opts?: Opts,
1762
- ): asserts this is NodePath_Final<t.PipelineTopicExpression & Opts>;
1763
1728
  assertPlaceholder<Opts extends Options$2<t.Placeholder>>(
1764
1729
  opts?: Opts,
1765
1730
  ): asserts this is NodePath_Final<t.Placeholder & Opts>;
@@ -3365,29 +3330,6 @@ interface BaseNodePathValidators {
3365
3330
  this: NodePath_Final<t.Node | null>,
3366
3331
  opts: Opts,
3367
3332
  ): this is NodePath_Final<t.PatternLike & Opts>;
3368
- isPipelineBareFunction(
3369
- this: NodePath_Final<t.Node | null>,
3370
- ): this is NodePath_Final<t.PipelineBareFunction>;
3371
- isPipelineBareFunction<Opts extends Options<t.PipelineBareFunction>>(
3372
- this: NodePath_Final<t.Node | null>,
3373
- opts: Opts,
3374
- ): this is NodePath_Final<t.PipelineBareFunction & Opts>;
3375
- isPipelinePrimaryTopicReference(
3376
- this: NodePath_Final<t.Node | null>,
3377
- ): this is NodePath_Final<t.PipelinePrimaryTopicReference>;
3378
- isPipelinePrimaryTopicReference<
3379
- Opts extends Options<t.PipelinePrimaryTopicReference>,
3380
- >(
3381
- this: NodePath_Final<t.Node | null>,
3382
- opts: Opts,
3383
- ): this is NodePath_Final<t.PipelinePrimaryTopicReference & Opts>;
3384
- isPipelineTopicExpression(
3385
- this: NodePath_Final<t.Node | null>,
3386
- ): this is NodePath_Final<t.PipelineTopicExpression>;
3387
- isPipelineTopicExpression<Opts extends Options<t.PipelineTopicExpression>>(
3388
- this: NodePath_Final<t.Node | null>,
3389
- opts: Opts,
3390
- ): this is NodePath_Final<t.PipelineTopicExpression & Opts>;
3391
3333
  isPlaceholder(this: NodePath_Final<t.Node | null>): this is NodePath_Final<t.Placeholder>;
3392
3334
  isPlaceholder<Opts extends Options<t.Placeholder>>(
3393
3335
  this: NodePath_Final<t.Node | null>,
@@ -4325,7 +4267,6 @@ declare const methods: {
4325
4267
  isConstantExpression: typeof isConstantExpression;
4326
4268
  isInStrictMode: typeof isInStrictMode;
4327
4269
  isDenylisted: typeof isDenylisted;
4328
- visit: typeof visit;
4329
4270
  skip: typeof skip;
4330
4271
  skipKey: typeof skipKey;
4331
4272
  stop: typeof stop;
@@ -4367,7 +4308,7 @@ interface NodePathOverwrites {
4367
4308
  /**
4368
4309
  * @see ./introspection.ts for implementation.
4369
4310
  */
4370
- isStatementOrBlock(this: NodePath_Final): this is NodePath_Final<t.Statement | t.Block>;
4311
+ isStatementOrBlock(this: NodePath_Final<t.Node | null>): this is NodePath_Final<t.Statement | t.Block>;
4371
4312
  }
4372
4313
  type NodePathMixins = Omit<typeof methods, keyof NodePathOverwrites>;
4373
4314
  interface NodePath<N extends t.Node | null, T extends t.Node["type"] | null = N extends null ? null : NonNullable<N>["type"], P extends t.Node = T extends null ? never : NonNullable<t.ParentMaps[NonNullable<T>]>> extends InstanceType<typeof NodePath_Final>, NodePathAssertions, NodePathValidators, NodePathMixins, NodePathOverwrites {
@@ -4409,8 +4350,8 @@ declare const NodePath_Final: {
4409
4350
  traverse<T>(this: NodePath_Final, visitor: Visitor<T>, state: T): void;
4410
4351
  traverse(this: NodePath_Final, visitor: Visitor): void;
4411
4352
  set(key: string, node: any): void;
4412
- getPathLocation(this: NodePath_Final): string;
4413
- debug(this: NodePath_Final, message: string): void;
4353
+ getPathLocation(this: NodePath_Final<t.Node | null>): string;
4354
+ debug(this: NodePath_Final<t.Node | null>, message: string): void;
4414
4355
  toString(): string;
4415
4356
  get inList(): boolean;
4416
4357
  set inList(inList: boolean);
@@ -4433,7 +4374,7 @@ declare let scope: WeakMap<Node, Scope>;
4433
4374
  declare function clear(): void;
4434
4375
  declare function clearPath(): void;
4435
4376
  declare function clearScope(): void;
4436
- declare function getCachedPaths(path: NodePath_Final): Map<Node, NodePath<t.Identifier, "Identifier", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.BreakStatement | t.CallExpression | t.CatchClause | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassImplements | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.ContinueStatement | t.DeclareClass | t.DeclareFunction | t.DeclareInterface | t.DeclareModule | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclareVariable | t.Decorator | t.DoWhileStatement | t.EnumBooleanMember | t.EnumDeclaration | t.EnumDefaultedMember | t.EnumNumberMember | t.EnumStringMember | t.ExportDefaultDeclaration | t.ExportDefaultSpecifier | t.ExportNamespaceSpecifier | t.ExportSpecifier | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.FunctionDeclaration | t.FunctionExpression | t.FunctionTypeParam | t.GenericTypeAnnotation | t.IfStatement | t.ImportAttribute | t.ImportDefaultSpecifier | t.ImportExpression | t.ImportNamespaceSpecifier | t.ImportSpecifier | t.InterfaceDeclaration | t.InterfaceExtends | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LabeledStatement | t.LogicalExpression | t.MemberExpression | t.MetaProperty | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.OpaqueType | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.Placeholder | t.PrivateName | t.QualifiedTypeIdentifier | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSCallSignatureDeclaration | t.TSClassImplements | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSEnumDeclaration | t.TSEnumMember | t.TSExportAssignment | t.TSFunctionType | t.TSImportEqualsDeclaration | t.TSImportType | t.TSIndexSignature | t.TSInstantiationExpression | t.TSInterfaceDeclaration | t.TSInterfaceHeritage | t.TSMappedType | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNamedTupleMember | t.TSNamespaceExportDeclaration | t.TSNonNullExpression | t.TSParameterProperty | t.TSPropertySignature | t.TSQualifiedName | t.TSSatisfiesExpression | t.TSTypeAliasDeclaration | t.TSTypeAssertion | t.TSTypeParameter | t.TSTypePredicate | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeAlias | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AnyTypeAnnotation, "AnyTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ArgumentPlaceholder, "ArgumentPlaceholder", NonNullable<t.CallExpression | t.NewExpression | t.OptionalCallExpression>> | NodePath<t.ArrayExpression, "ArrayExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ArrayPattern, "ArrayPattern", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.CatchClause | t.ClassMethod | t.ClassPrivateMethod | t.ForInStatement | t.ForOfStatement | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectProperty | t.RestElement | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSMethodSignature | t.VariableDeclarator>> | NodePath<t.ArrayTypeAnnotation, "ArrayTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ArrowFunctionExpression, "ArrowFunctionExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AssignmentExpression, "AssignmentExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AssignmentPattern, "AssignmentPattern", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.ClassMethod | t.ClassPrivateMethod | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectProperty | t.TSDeclareFunction | t.TSDeclareMethod | t.TSParameterProperty>> | NodePath<t.AwaitExpression, "AwaitExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BigIntLiteral, "BigIntLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BinaryExpression, "BinaryExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BindExpression, "BindExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BlockStatement, "BlockStatement", NonNullable<t.ArrowFunctionExpression | t.BlockStatement | t.CatchClause | t.ClassMethod | t.ClassPrivateMethod | t.DeclareModule | t.DoExpression | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.FunctionDeclaration | t.FunctionExpression | t.IfStatement | t.LabeledStatement | t.ObjectMethod | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.TryStatement | t.WhileStatement | t.WithStatement>> | NodePath<t.BooleanLiteral, "BooleanLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.EnumBooleanMember | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BooleanLiteralTypeAnnotation, "BooleanLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.BooleanTypeAnnotation, "BooleanTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.BreakStatement, "BreakStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.CallExpression, "CallExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.CatchClause, "CatchClause", t.TryStatement> | NodePath<t.ClassAccessorPropertyComputed, "ClassAccessorProperty", t.ClassBody> | NodePath<t.ClassAccessorPropertyNonComputed, "ClassAccessorProperty", t.ClassBody> | NodePath<t.ClassBody, "ClassBody", NonNullable<t.ClassDeclaration | t.ClassExpression>> | NodePath<t.ClassDeclaration, "ClassDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ClassExpression, "ClassExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ClassImplements, "ClassImplements", NonNullable<t.ClassDeclaration | t.ClassExpression | t.DeclareClass | t.DeclareExportDeclaration | t.DeclaredPredicate>> | NodePath<t.ClassMethodComputed, "ClassMethod", t.ClassBody> | NodePath<t.ClassMethodNonComputed, "ClassMethod", t.ClassBody> | NodePath<t.ClassPrivateMethod, "ClassPrivateMethod", t.ClassBody> | NodePath<t.ClassPrivateProperty, "ClassPrivateProperty", t.ClassBody> | NodePath<t.ClassPropertyComputed, "ClassProperty", t.ClassBody> | NodePath<t.ClassPropertyNonComputed, "ClassProperty", t.ClassBody> | NodePath<t.ConditionalExpression, "ConditionalExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ContinueStatement, "ContinueStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DebuggerStatement, "DebuggerStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareClass, "DeclareClass", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareExportAllDeclaration, "DeclareExportAllDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareExportDeclaration, "DeclareExportDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareFunction, "DeclareFunction", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareInterface, "DeclareInterface", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareModule, "DeclareModule", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareModuleExports, "DeclareModuleExports", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareOpaqueType, "DeclareOpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareTypeAlias, "DeclareTypeAlias", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareVariable, "DeclareVariable", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclaredPredicate, "DeclaredPredicate", NonNullable<t.ArrowFunctionExpression | t.DeclareExportDeclaration | t.DeclareFunction | t.DeclaredPredicate | t.FunctionDeclaration | t.FunctionExpression>> | NodePath<t.Decorator, "Decorator", NonNullable<t.Identifier | t.ArrayPattern | t.AssignmentPattern | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.ObjectMethod | t.ObjectPattern | t.ObjectProperty | t.Placeholder | t.RestElement | t.TSDeclareMethod | t.TSParameterProperty>> | NodePath<t.Directive, "Directive", NonNullable<t.BlockStatement | t.Program>> | NodePath<t.DirectiveLiteral, "DirectiveLiteral", t.Directive> | NodePath<t.DoExpression, "DoExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.DoWhileStatement, "DoWhileStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.EmptyStatement, "EmptyStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.EmptyTypeAnnotation, "EmptyTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.EnumBooleanBody, "EnumBooleanBody", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumDeclaration>> | NodePath<t.EnumBooleanMember, "EnumBooleanMember", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumBooleanBody>> | NodePath<t.EnumDeclaration, "EnumDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.EnumDefaultedMember, "EnumDefaultedMember", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumStringBody | t.EnumSymbolBody>> | NodePath<t.EnumNumberBody, "EnumNumberBody", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumDeclaration>> | NodePath<t.EnumNumberMember, "EnumNumberMember", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumNumberBody>> | NodePath<t.EnumStringBody, "EnumStringBody", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumDeclaration>> | NodePath<t.EnumStringMember, "EnumStringMember", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumStringBody>> | NodePath<t.EnumSymbolBody, "EnumSymbolBody", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumDeclaration>> | NodePath<t.ExistsTypeAnnotation, "ExistsTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ExportAllDeclaration, "ExportAllDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExportDefaultDeclaration, "ExportDefaultDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExportDefaultSpecifier, "ExportDefaultSpecifier", t.ExportNamedDeclaration> | NodePath<t.ExportNamedDeclaration, "ExportNamedDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExportNamespaceSpecifier, "ExportNamespaceSpecifier", NonNullable<t.DeclareExportDeclaration | t.ExportNamedDeclaration>> | NodePath<t.ExportSpecifier, "ExportSpecifier", NonNullable<t.DeclareExportDeclaration | t.ExportNamedDeclaration>> | NodePath<t.ExpressionStatement, "ExpressionStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.File, "File", never> | NodePath<t.ForInStatement, "ForInStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ForOfStatement, "ForOfStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ForStatement, "ForStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.FunctionDeclaration, "FunctionDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.FunctionExpression, "FunctionExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.FunctionTypeAnnotation, "FunctionTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.FunctionTypeParam, "FunctionTypeParam", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.FunctionTypeAnnotation>> | NodePath<t.GenericTypeAnnotation, "GenericTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.IfStatement, "IfStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.Import, "Import", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ImportAttribute, "ImportAttribute", NonNullable<t.DeclareExportAllDeclaration | t.DeclareExportDeclaration | t.ExportAllDeclaration | t.ExportNamedDeclaration | t.ImportDeclaration>> | NodePath<t.ImportDeclaration, "ImportDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ImportDefaultSpecifier, "ImportDefaultSpecifier", t.ImportDeclaration> | NodePath<t.ImportExpression, "ImportExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ImportNamespaceSpecifier, "ImportNamespaceSpecifier", t.ImportDeclaration> | NodePath<t.ImportSpecifier, "ImportSpecifier", t.ImportDeclaration> | NodePath<t.IndexedAccessType, "IndexedAccessType", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.InferredPredicate, "InferredPredicate", NonNullable<t.ArrowFunctionExpression | t.DeclareExportDeclaration | t.DeclaredPredicate | t.FunctionDeclaration | t.FunctionExpression>> | NodePath<t.InterfaceDeclaration, "InterfaceDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.InterfaceExtends, "InterfaceExtends", NonNullable<t.ClassDeclaration | t.ClassExpression | t.DeclareClass | t.DeclareExportDeclaration | t.DeclareInterface | t.DeclaredPredicate | t.InterfaceDeclaration | t.InterfaceTypeAnnotation>> | NodePath<t.InterfaceTypeAnnotation, "InterfaceTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.InterpreterDirective, "InterpreterDirective", t.Program> | NodePath<t.IntersectionTypeAnnotation, "IntersectionTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.JSXAttribute, "JSXAttribute", t.JSXOpeningElement> | NodePath<t.JSXClosingElement, "JSXClosingElement", t.JSXElement> | NodePath<t.JSXClosingFragment, "JSXClosingFragment", t.JSXFragment> | NodePath<t.JSXElement, "JSXElement", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXAttribute | t.JSXElement | t.JSXExpressionContainer | t.JSXFragment | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.JSXEmptyExpression, "JSXEmptyExpression", t.JSXExpressionContainer> | NodePath<t.JSXExpressionContainer, "JSXExpressionContainer", NonNullable<t.JSXAttribute | t.JSXElement | t.JSXFragment>> | NodePath<t.JSXFragment, "JSXFragment", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXAttribute | t.JSXElement | t.JSXExpressionContainer | t.JSXFragment | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.JSXIdentifier, "JSXIdentifier", NonNullable<t.JSXAttribute | t.JSXClosingElement | t.JSXMemberExpression | t.JSXNamespacedName | t.JSXOpeningElement>> | NodePath<t.JSXMemberExpression, "JSXMemberExpression", NonNullable<t.JSXClosingElement | t.JSXMemberExpression | t.JSXOpeningElement>> | NodePath<t.JSXNamespacedName, "JSXNamespacedName", NonNullable<t.JSXAttribute | t.JSXClosingElement | t.JSXOpeningElement>> | NodePath<t.JSXOpeningElement, "JSXOpeningElement", t.JSXElement> | NodePath<t.JSXOpeningFragment, "JSXOpeningFragment", t.JSXFragment> | NodePath<t.JSXSpreadAttribute, "JSXSpreadAttribute", t.JSXOpeningElement> | NodePath<t.JSXSpreadChild, "JSXSpreadChild", NonNullable<t.JSXElement | t.JSXFragment>> | NodePath<t.JSXText, "JSXText", NonNullable<t.JSXElement | t.JSXFragment>> | NodePath<t.LabeledStatement, "LabeledStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.LogicalExpression, "LogicalExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MemberExpressionComputed, "MemberExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MemberExpressionNonComputed, "MemberExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MetaProperty, "MetaProperty", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MixedTypeAnnotation, "MixedTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ModuleExpression, "ModuleExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NewExpression, "NewExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NullLiteral, "NullLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NullLiteralTypeAnnotation, "NullLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.NullableTypeAnnotation, "NullableTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.NumberLiteral, "NumberLiteral", never> | NodePath<t.NumberLiteralTypeAnnotation, "NumberLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.NumberTypeAnnotation, "NumberTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.NumericLiteral, "NumericLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.EnumNumberMember | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ObjectExpression, "ObjectExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ObjectMethodComputed, "ObjectMethod", t.ObjectExpression> | NodePath<t.ObjectMethodNonComputed, "ObjectMethod", t.ObjectExpression> | NodePath<t.ObjectPattern, "ObjectPattern", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.CatchClause | t.ClassMethod | t.ClassPrivateMethod | t.ForInStatement | t.ForOfStatement | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectProperty | t.RestElement | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSMethodSignature | t.VariableDeclarator>> | NodePath<t.ObjectPropertyComputed, "ObjectProperty", NonNullable<t.ObjectExpression | t.ObjectPattern>> | NodePath<t.ObjectPropertyNonComputed, "ObjectProperty", NonNullable<t.ObjectExpression | t.ObjectPattern>> | NodePath<t.ObjectTypeAnnotation, "ObjectTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareClass | t.DeclareExportDeclaration | t.DeclareInterface | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.InterfaceDeclaration | t.InterfaceTypeAnnotation | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ObjectTypeCallProperty, "ObjectTypeCallProperty", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeIndexer, "ObjectTypeIndexer", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeInternalSlot, "ObjectTypeInternalSlot", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeProperty, "ObjectTypeProperty", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeSpreadProperty, "ObjectTypeSpreadProperty", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.OpaqueType, "OpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.OptionalCallExpression, "OptionalCallExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.OptionalIndexedAccessType, "OptionalIndexedAccessType", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.OptionalMemberExpression, "OptionalMemberExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ParenthesizedExpression, "ParenthesizedExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.PipelineBareFunction, "PipelineBareFunction", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.PipelinePrimaryTopicReference, "PipelinePrimaryTopicReference", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.PipelineTopicExpression, "PipelineTopicExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.Placeholder, "Placeholder", NonNullable<Node>> | NodePath<t.PrivateName, "PrivateName", NonNullable<t.BinaryExpression | t.ClassAccessorProperty | t.ClassPrivateMethod | t.ClassPrivateProperty | t.MemberExpression | t.ObjectProperty>> | NodePath<t.Program, "Program", NonNullable<t.File | t.ModuleExpression>> | NodePath<t.QualifiedTypeIdentifier, "QualifiedTypeIdentifier", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.GenericTypeAnnotation | t.InterfaceExtends | t.QualifiedTypeIdentifier>> | NodePath<t.RegExpLiteral, "RegExpLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.RegexLiteral, "RegexLiteral", never> | NodePath<t.RestElement, "RestElement", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.ClassMethod | t.ClassPrivateMethod | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectPattern | t.ObjectProperty | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSMethodSignature>> | NodePath<t.RestProperty, "RestProperty", never> | NodePath<t.ReturnStatement, "ReturnStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.SequenceExpression, "SequenceExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.SpreadElement, "SpreadElement", NonNullable<t.ArrayExpression | t.CallExpression | t.NewExpression | t.ObjectExpression | t.OptionalCallExpression>> | NodePath<t.SpreadProperty, "SpreadProperty", never> | NodePath<t.StaticBlock, "StaticBlock", t.ClassBody> | NodePath<t.StringLiteral, "StringLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.DeclareExportAllDeclaration | t.DeclareExportDeclaration | t.DeclareModule | t.Decorator | t.DoWhileStatement | t.EnumStringMember | t.ExportAllDeclaration | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ExportSpecifier | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportAttribute | t.ImportDeclaration | t.ImportExpression | t.ImportSpecifier | t.JSXAttribute | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.ObjectTypeProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSExternalModuleReference | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.StringLiteralTypeAnnotation, "StringLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.StringTypeAnnotation, "StringTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.Super, "Super", NonNullable<t.CallExpression | t.MemberExpression | t.NewExpression>> | NodePath<t.SwitchCase, "SwitchCase", t.SwitchStatement> | NodePath<t.SwitchStatement, "SwitchStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.SymbolTypeAnnotation, "SymbolTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.TSAnyKeyword, "TSAnyKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSArrayType, "TSArrayType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSAsExpression, "TSAsExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSBigIntKeyword, "TSBigIntKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSBooleanKeyword, "TSBooleanKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSCallSignatureDeclaration, "TSCallSignatureDeclaration", NonNullable<t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSClassImplements, "TSClassImplements", NonNullable<t.ClassDeclaration | t.ClassExpression | t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSInterfaceDeclaration | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSConditionalType, "TSConditionalType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSConstructSignatureDeclaration, "TSConstructSignatureDeclaration", NonNullable<t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSConstructorType, "TSConstructorType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSDeclareFunction, "TSDeclareFunction", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSDeclareMethodComputed, "TSDeclareMethod", t.ClassBody> | NodePath<t.TSDeclareMethodNonComputed, "TSDeclareMethod", t.ClassBody> | NodePath<t.TSEnumBody, "TSEnumBody", t.TSEnumDeclaration> | NodePath<t.TSEnumDeclaration, "TSEnumDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSEnumMember, "TSEnumMember", t.TSEnumBody> | NodePath<t.TSExportAssignment, "TSExportAssignment", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSExternalModuleReference, "TSExternalModuleReference", t.TSImportEqualsDeclaration> | NodePath<t.TSFunctionType, "TSFunctionType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSImportEqualsDeclaration, "TSImportEqualsDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSImportType, "TSImportType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSTypeQuery | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSIndexSignature, "TSIndexSignature", NonNullable<t.ClassBody | t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSIndexedAccessType, "TSIndexedAccessType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSInferType, "TSInferType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSInstantiationExpression, "TSInstantiationExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSInterfaceBody, "TSInterfaceBody", t.TSInterfaceDeclaration> | NodePath<t.TSInterfaceDeclaration, "TSInterfaceDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSInterfaceHeritage, "TSInterfaceHeritage", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSIntersectionType, "TSIntersectionType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSIntrinsicKeyword, "TSIntrinsicKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSLiteralType, "TSLiteralType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSMappedType, "TSMappedType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSMethodSignature, "TSMethodSignature", NonNullable<t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSModuleBlock, "TSModuleBlock", t.TSModuleDeclaration> | NodePath<t.TSModuleDeclaration, "TSModuleDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSNamedTupleMember, "TSNamedTupleMember", t.TSTupleType> | NodePath<t.TSNamespaceExportDeclaration, "TSNamespaceExportDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSNeverKeyword, "TSNeverKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSNonNullExpression, "TSNonNullExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSNullKeyword, "TSNullKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSNumberKeyword, "TSNumberKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSObjectKeyword, "TSObjectKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSOptionalType, "TSOptionalType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSParameterProperty, "TSParameterProperty", NonNullable<t.ClassMethod | t.ClassPrivateMethod | t.TSDeclareMethod>> | NodePath<t.TSParenthesizedType, "TSParenthesizedType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSPropertySignature, "TSPropertySignature", NonNullable<t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSQualifiedName, "TSQualifiedName", NonNullable<t.TSImportEqualsDeclaration | t.TSImportType | t.TSModuleDeclaration | t.TSQualifiedName | t.TSTypeQuery | t.TSTypeReference>> | NodePath<t.TSRestType, "TSRestType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSSatisfiesExpression, "TSSatisfiesExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSStringKeyword, "TSStringKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSSymbolKeyword, "TSSymbolKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTemplateLiteralType, "TSTemplateLiteralType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSThisType, "TSThisType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSTypePredicate | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTupleType, "TSTupleType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeAliasDeclaration, "TSTypeAliasDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSTypeAnnotation, "TSTypeAnnotation", NonNullable<t.Identifier | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentPattern | t.ClassAccessorProperty | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectPattern | t.Placeholder | t.RestElement | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSIndexSignature | t.TSMethodSignature | t.TSPropertySignature | t.TSTypePredicate>> | NodePath<t.TSTypeAssertion, "TSTypeAssertion", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSTypeLiteral, "TSTypeLiteral", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeOperator, "TSTypeOperator", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeParameter, "TSTypeParameter", NonNullable<t.TSInferType | t.TSTypeParameterDeclaration>> | NodePath<t.TSTypeParameterDeclaration, "TSTypeParameterDeclaration", NonNullable<t.ArrowFunctionExpression | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateMethod | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSInterfaceDeclaration | t.TSMethodSignature | t.TSTypeAliasDeclaration>> | NodePath<t.TSTypeParameterInstantiation, "TSTypeParameterInstantiation", NonNullable<t.CallExpression | t.ClassDeclaration | t.ClassExpression | t.JSXOpeningElement | t.NewExpression | t.OptionalCallExpression | t.TSClassImplements | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression>> | NodePath<t.TSTypePredicate, "TSTypePredicate", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeQuery, "TSTypeQuery", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeReference, "TSTypeReference", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSUndefinedKeyword, "TSUndefinedKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSUnionType, "TSUnionType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSUnknownKeyword, "TSUnknownKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSVoidKeyword, "TSVoidKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TaggedTemplateExpression, "TaggedTemplateExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TemplateElement, "TemplateElement", NonNullable<t.TSTemplateLiteralType | t.TemplateLiteral>> | NodePath<t.TemplateLiteral, "TemplateLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ThisExpression, "ThisExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSImportEqualsDeclaration | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNonNullExpression | t.TSPropertySignature | t.TSQualifiedName | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ThisTypeAnnotation, "ThisTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ThrowStatement, "ThrowStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TopicReference, "TopicReference", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TryStatement, "TryStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TupleTypeAnnotation, "TupleTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.TypeAlias, "TypeAlias", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TypeAnnotation, "TypeAnnotation", NonNullable<t.Identifier | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentPattern | t.ClassAccessorProperty | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.DeclareExportDeclaration | t.DeclareModuleExports | t.DeclaredPredicate | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectPattern | t.Placeholder | t.RestElement | t.TypeCastExpression | t.TypeParameter>> | NodePath<t.TypeCastExpression, "TypeCastExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.DeclareExportDeclaration | t.DeclaredPredicate | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TypeParameter, "TypeParameter", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.TypeParameterDeclaration>> | NodePath<t.TypeParameterDeclaration, "TypeParameterDeclaration", NonNullable<t.ArrowFunctionExpression | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateMethod | t.DeclareClass | t.DeclareExportDeclaration | t.DeclareInterface | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionDeclaration | t.FunctionExpression | t.FunctionTypeAnnotation | t.InterfaceDeclaration | t.ObjectMethod | t.OpaqueType | t.TypeAlias>> | NodePath<t.TypeParameterInstantiation, "TypeParameterInstantiation", NonNullable<t.CallExpression | t.ClassDeclaration | t.ClassExpression | t.ClassImplements | t.DeclareExportDeclaration | t.DeclaredPredicate | t.GenericTypeAnnotation | t.InterfaceExtends | t.JSXOpeningElement | t.NewExpression | t.OptionalCallExpression | t.TaggedTemplateExpression>> | NodePath<t.TypeofTypeAnnotation, "TypeofTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.UnaryExpression, "UnaryExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.UnionTypeAnnotation, "UnionTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.UpdateExpression, "UpdateExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.V8IntrinsicIdentifier, "V8IntrinsicIdentifier", NonNullable<t.CallExpression | t.NewExpression>> | NodePath<t.VariableDeclaration, "VariableDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.VariableDeclarator, "VariableDeclarator", t.VariableDeclaration> | NodePath<t.Variance, "Variance", NonNullable<t.ClassAccessorProperty | t.ClassPrivateProperty | t.ClassProperty | t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeIndexer | t.ObjectTypeProperty | t.TypeParameter>> | NodePath<t.VoidPattern, "VoidPattern", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.ClassMethod | t.ClassPrivateMethod | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectProperty | t.TSDeclareFunction | t.TSDeclareMethod | t.VariableDeclarator>> | NodePath<t.VoidTypeAnnotation, "VoidTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.WhileStatement, "WhileStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.WithStatement, "WithStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.YieldExpression, "YieldExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.PipelineBareFunction | t.PipelineTopicExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>>> | null | undefined;
4377
+ declare function getCachedPaths(path: NodePath_Final): Map<Node, NodePath<t.Identifier, "Identifier", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.BreakStatement | t.CallExpression | t.CatchClause | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassImplements | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.ContinueStatement | t.DeclareClass | t.DeclareFunction | t.DeclareInterface | t.DeclareModule | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclareVariable | t.Decorator | t.DoWhileStatement | t.EnumBooleanMember | t.EnumDeclaration | t.EnumDefaultedMember | t.EnumNumberMember | t.EnumStringMember | t.ExportDefaultDeclaration | t.ExportDefaultSpecifier | t.ExportNamespaceSpecifier | t.ExportSpecifier | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.FunctionDeclaration | t.FunctionExpression | t.FunctionTypeParam | t.GenericTypeAnnotation | t.IfStatement | t.ImportAttribute | t.ImportDefaultSpecifier | t.ImportExpression | t.ImportNamespaceSpecifier | t.ImportSpecifier | t.InterfaceDeclaration | t.InterfaceExtends | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LabeledStatement | t.LogicalExpression | t.MemberExpression | t.MetaProperty | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.OpaqueType | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.Placeholder | t.PrivateName | t.QualifiedTypeIdentifier | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSCallSignatureDeclaration | t.TSClassImplements | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSEnumDeclaration | t.TSEnumMember | t.TSExportAssignment | t.TSFunctionType | t.TSImportEqualsDeclaration | t.TSImportType | t.TSIndexSignature | t.TSInstantiationExpression | t.TSInterfaceDeclaration | t.TSInterfaceHeritage | t.TSMappedType | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNamedTupleMember | t.TSNamespaceExportDeclaration | t.TSNonNullExpression | t.TSParameterProperty | t.TSPropertySignature | t.TSQualifiedName | t.TSSatisfiesExpression | t.TSTypeAliasDeclaration | t.TSTypeAssertion | t.TSTypeParameter | t.TSTypePredicate | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeAlias | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AnyTypeAnnotation, "AnyTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ArgumentPlaceholder, "ArgumentPlaceholder", NonNullable<t.CallExpression | t.NewExpression | t.OptionalCallExpression>> | NodePath<t.ArrayExpression, "ArrayExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ArrayPattern, "ArrayPattern", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.CatchClause | t.ClassMethod | t.ClassPrivateMethod | t.ForInStatement | t.ForOfStatement | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectProperty | t.RestElement | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSMethodSignature | t.VariableDeclarator>> | NodePath<t.ArrayTypeAnnotation, "ArrayTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ArrowFunctionExpression, "ArrowFunctionExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AssignmentExpression, "AssignmentExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.AssignmentPattern, "AssignmentPattern", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.ClassMethod | t.ClassPrivateMethod | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectProperty | t.TSDeclareFunction | t.TSDeclareMethod | t.TSParameterProperty>> | NodePath<t.AwaitExpression, "AwaitExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BigIntLiteral, "BigIntLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BinaryExpression, "BinaryExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BindExpression, "BindExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BlockStatement, "BlockStatement", NonNullable<t.ArrowFunctionExpression | t.BlockStatement | t.CatchClause | t.ClassMethod | t.ClassPrivateMethod | t.DeclareModule | t.DoExpression | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.FunctionDeclaration | t.FunctionExpression | t.IfStatement | t.LabeledStatement | t.ObjectMethod | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.TryStatement | t.WhileStatement | t.WithStatement>> | NodePath<t.BooleanLiteral, "BooleanLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.EnumBooleanMember | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.BooleanLiteralTypeAnnotation, "BooleanLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.BooleanTypeAnnotation, "BooleanTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.BreakStatement, "BreakStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.CallExpression, "CallExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.CatchClause, "CatchClause", t.TryStatement> | NodePath<t.ClassAccessorPropertyComputed, "ClassAccessorProperty", t.ClassBody> | NodePath<t.ClassAccessorPropertyNonComputed, "ClassAccessorProperty", t.ClassBody> | NodePath<t.ClassBody, "ClassBody", NonNullable<t.ClassDeclaration | t.ClassExpression>> | NodePath<t.ClassDeclaration, "ClassDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ClassExpression, "ClassExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ClassImplements, "ClassImplements", NonNullable<t.ClassDeclaration | t.ClassExpression | t.DeclareClass | t.DeclareExportDeclaration | t.DeclaredPredicate>> | NodePath<t.ClassMethodComputed, "ClassMethod", t.ClassBody> | NodePath<t.ClassMethodNonComputed, "ClassMethod", t.ClassBody> | NodePath<t.ClassPrivateMethod, "ClassPrivateMethod", t.ClassBody> | NodePath<t.ClassPrivateProperty, "ClassPrivateProperty", t.ClassBody> | NodePath<t.ClassPropertyComputed, "ClassProperty", t.ClassBody> | NodePath<t.ClassPropertyNonComputed, "ClassProperty", t.ClassBody> | NodePath<t.ConditionalExpression, "ConditionalExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ContinueStatement, "ContinueStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DebuggerStatement, "DebuggerStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareClass, "DeclareClass", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareExportAllDeclaration, "DeclareExportAllDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareExportDeclaration, "DeclareExportDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareFunction, "DeclareFunction", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareInterface, "DeclareInterface", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareModule, "DeclareModule", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareModuleExports, "DeclareModuleExports", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareOpaqueType, "DeclareOpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareTypeAlias, "DeclareTypeAlias", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclareVariable, "DeclareVariable", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.DeclaredPredicate, "DeclaredPredicate", NonNullable<t.ArrowFunctionExpression | t.DeclareExportDeclaration | t.DeclareFunction | t.DeclaredPredicate | t.FunctionDeclaration | t.FunctionExpression>> | NodePath<t.Decorator, "Decorator", NonNullable<t.Identifier | t.ArrayPattern | t.AssignmentPattern | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.ObjectMethod | t.ObjectPattern | t.ObjectProperty | t.Placeholder | t.RestElement | t.TSDeclareMethod | t.TSParameterProperty>> | NodePath<t.Directive, "Directive", NonNullable<t.BlockStatement | t.Program>> | NodePath<t.DirectiveLiteral, "DirectiveLiteral", t.Directive> | NodePath<t.DoExpression, "DoExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.DoWhileStatement, "DoWhileStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.EmptyStatement, "EmptyStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.EmptyTypeAnnotation, "EmptyTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.EnumBooleanBody, "EnumBooleanBody", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumDeclaration>> | NodePath<t.EnumBooleanMember, "EnumBooleanMember", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumBooleanBody>> | NodePath<t.EnumDeclaration, "EnumDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.EnumDefaultedMember, "EnumDefaultedMember", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumStringBody | t.EnumSymbolBody>> | NodePath<t.EnumNumberBody, "EnumNumberBody", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumDeclaration>> | NodePath<t.EnumNumberMember, "EnumNumberMember", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumNumberBody>> | NodePath<t.EnumStringBody, "EnumStringBody", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumDeclaration>> | NodePath<t.EnumStringMember, "EnumStringMember", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumStringBody>> | NodePath<t.EnumSymbolBody, "EnumSymbolBody", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.EnumDeclaration>> | NodePath<t.ExistsTypeAnnotation, "ExistsTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ExportAllDeclaration, "ExportAllDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExportDefaultDeclaration, "ExportDefaultDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExportDefaultSpecifier, "ExportDefaultSpecifier", t.ExportNamedDeclaration> | NodePath<t.ExportNamedDeclaration, "ExportNamedDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ExportNamespaceSpecifier, "ExportNamespaceSpecifier", NonNullable<t.DeclareExportDeclaration | t.ExportNamedDeclaration>> | NodePath<t.ExportSpecifier, "ExportSpecifier", NonNullable<t.DeclareExportDeclaration | t.ExportNamedDeclaration>> | NodePath<t.ExpressionStatement, "ExpressionStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.File, "File", never> | NodePath<t.ForInStatement, "ForInStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ForOfStatement, "ForOfStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ForStatement, "ForStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.FunctionDeclaration, "FunctionDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.FunctionExpression, "FunctionExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.FunctionTypeAnnotation, "FunctionTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.FunctionTypeParam, "FunctionTypeParam", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.FunctionTypeAnnotation>> | NodePath<t.GenericTypeAnnotation, "GenericTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.IfStatement, "IfStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.Import, "Import", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ImportAttribute, "ImportAttribute", NonNullable<t.DeclareExportAllDeclaration | t.DeclareExportDeclaration | t.ExportAllDeclaration | t.ExportNamedDeclaration | t.ImportDeclaration>> | NodePath<t.ImportDeclaration, "ImportDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.ImportDefaultSpecifier, "ImportDefaultSpecifier", t.ImportDeclaration> | NodePath<t.ImportExpression, "ImportExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ImportNamespaceSpecifier, "ImportNamespaceSpecifier", t.ImportDeclaration> | NodePath<t.ImportSpecifier, "ImportSpecifier", t.ImportDeclaration> | NodePath<t.IndexedAccessType, "IndexedAccessType", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.InferredPredicate, "InferredPredicate", NonNullable<t.ArrowFunctionExpression | t.DeclareExportDeclaration | t.DeclaredPredicate | t.FunctionDeclaration | t.FunctionExpression>> | NodePath<t.InterfaceDeclaration, "InterfaceDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.InterfaceExtends, "InterfaceExtends", NonNullable<t.ClassDeclaration | t.ClassExpression | t.DeclareClass | t.DeclareExportDeclaration | t.DeclareInterface | t.DeclaredPredicate | t.InterfaceDeclaration | t.InterfaceTypeAnnotation>> | NodePath<t.InterfaceTypeAnnotation, "InterfaceTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.InterpreterDirective, "InterpreterDirective", t.Program> | NodePath<t.IntersectionTypeAnnotation, "IntersectionTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.JSXAttribute, "JSXAttribute", t.JSXOpeningElement> | NodePath<t.JSXClosingElement, "JSXClosingElement", t.JSXElement> | NodePath<t.JSXClosingFragment, "JSXClosingFragment", t.JSXFragment> | NodePath<t.JSXElement, "JSXElement", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXAttribute | t.JSXElement | t.JSXExpressionContainer | t.JSXFragment | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.JSXEmptyExpression, "JSXEmptyExpression", t.JSXExpressionContainer> | NodePath<t.JSXExpressionContainer, "JSXExpressionContainer", NonNullable<t.JSXAttribute | t.JSXElement | t.JSXFragment>> | NodePath<t.JSXFragment, "JSXFragment", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXAttribute | t.JSXElement | t.JSXExpressionContainer | t.JSXFragment | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.JSXIdentifier, "JSXIdentifier", NonNullable<t.JSXAttribute | t.JSXClosingElement | t.JSXMemberExpression | t.JSXNamespacedName | t.JSXOpeningElement>> | NodePath<t.JSXMemberExpression, "JSXMemberExpression", NonNullable<t.JSXClosingElement | t.JSXMemberExpression | t.JSXOpeningElement>> | NodePath<t.JSXNamespacedName, "JSXNamespacedName", NonNullable<t.JSXAttribute | t.JSXClosingElement | t.JSXOpeningElement>> | NodePath<t.JSXOpeningElement, "JSXOpeningElement", t.JSXElement> | NodePath<t.JSXOpeningFragment, "JSXOpeningFragment", t.JSXFragment> | NodePath<t.JSXSpreadAttribute, "JSXSpreadAttribute", t.JSXOpeningElement> | NodePath<t.JSXSpreadChild, "JSXSpreadChild", NonNullable<t.JSXElement | t.JSXFragment>> | NodePath<t.JSXText, "JSXText", NonNullable<t.JSXElement | t.JSXFragment>> | NodePath<t.LabeledStatement, "LabeledStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.LogicalExpression, "LogicalExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MemberExpressionComputed, "MemberExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MemberExpressionNonComputed, "MemberExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.UpdateExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MetaProperty, "MetaProperty", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.MixedTypeAnnotation, "MixedTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ModuleExpression, "ModuleExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NewExpression, "NewExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NullLiteral, "NullLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.NullLiteralTypeAnnotation, "NullLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.NullableTypeAnnotation, "NullableTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.NumberLiteral, "NumberLiteral", never> | NodePath<t.NumberLiteralTypeAnnotation, "NumberLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.NumberTypeAnnotation, "NumberTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.NumericLiteral, "NumericLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.EnumNumberMember | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ObjectExpression, "ObjectExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ObjectMethodComputed, "ObjectMethod", t.ObjectExpression> | NodePath<t.ObjectMethodNonComputed, "ObjectMethod", t.ObjectExpression> | NodePath<t.ObjectPattern, "ObjectPattern", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.CatchClause | t.ClassMethod | t.ClassPrivateMethod | t.ForInStatement | t.ForOfStatement | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectProperty | t.RestElement | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSMethodSignature | t.VariableDeclarator>> | NodePath<t.ObjectPropertyComputed, "ObjectProperty", NonNullable<t.ObjectExpression | t.ObjectPattern>> | NodePath<t.ObjectPropertyNonComputed, "ObjectProperty", NonNullable<t.ObjectExpression | t.ObjectPattern>> | NodePath<t.ObjectTypeAnnotation, "ObjectTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareClass | t.DeclareExportDeclaration | t.DeclareInterface | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.InterfaceDeclaration | t.InterfaceTypeAnnotation | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ObjectTypeCallProperty, "ObjectTypeCallProperty", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeIndexer, "ObjectTypeIndexer", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeInternalSlot, "ObjectTypeInternalSlot", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeProperty, "ObjectTypeProperty", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeSpreadProperty, "ObjectTypeSpreadProperty", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeAnnotation>> | NodePath<t.OpaqueType, "OpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.OptionalCallExpression, "OptionalCallExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.OptionalIndexedAccessType, "OptionalIndexedAccessType", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.OptionalMemberExpression, "OptionalMemberExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ParenthesizedExpression, "ParenthesizedExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.Placeholder, "Placeholder", NonNullable<Node>> | NodePath<t.PrivateName, "PrivateName", NonNullable<t.BinaryExpression | t.ClassAccessorProperty | t.ClassPrivateMethod | t.ClassPrivateProperty | t.MemberExpression | t.ObjectProperty>> | NodePath<t.Program, "Program", NonNullable<t.File | t.ModuleExpression>> | NodePath<t.QualifiedTypeIdentifier, "QualifiedTypeIdentifier", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.GenericTypeAnnotation | t.InterfaceExtends | t.QualifiedTypeIdentifier>> | NodePath<t.RegExpLiteral, "RegExpLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.RegexLiteral, "RegexLiteral", never> | NodePath<t.RestElement, "RestElement", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.ClassMethod | t.ClassPrivateMethod | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectPattern | t.ObjectProperty | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSMethodSignature>> | NodePath<t.RestProperty, "RestProperty", never> | NodePath<t.ReturnStatement, "ReturnStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.SequenceExpression, "SequenceExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.SpreadElement, "SpreadElement", NonNullable<t.ArrayExpression | t.CallExpression | t.NewExpression | t.ObjectExpression | t.OptionalCallExpression>> | NodePath<t.SpreadProperty, "SpreadProperty", never> | NodePath<t.StaticBlock, "StaticBlock", t.ClassBody> | NodePath<t.StringLiteral, "StringLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.DeclareExportAllDeclaration | t.DeclareExportDeclaration | t.DeclareModule | t.Decorator | t.DoWhileStatement | t.EnumStringMember | t.ExportAllDeclaration | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ExportSpecifier | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportAttribute | t.ImportDeclaration | t.ImportExpression | t.ImportSpecifier | t.JSXAttribute | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.ObjectTypeProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSExternalModuleReference | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.StringLiteralTypeAnnotation, "StringLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.StringTypeAnnotation, "StringTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.Super, "Super", NonNullable<t.CallExpression | t.MemberExpression | t.NewExpression>> | NodePath<t.SwitchCase, "SwitchCase", t.SwitchStatement> | NodePath<t.SwitchStatement, "SwitchStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.SymbolTypeAnnotation, "SymbolTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.TSAnyKeyword, "TSAnyKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSArrayType, "TSArrayType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSAsExpression, "TSAsExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSBigIntKeyword, "TSBigIntKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSBooleanKeyword, "TSBooleanKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSCallSignatureDeclaration, "TSCallSignatureDeclaration", NonNullable<t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSClassImplements, "TSClassImplements", NonNullable<t.ClassDeclaration | t.ClassExpression | t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSInterfaceDeclaration | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSConditionalType, "TSConditionalType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSConstructSignatureDeclaration, "TSConstructSignatureDeclaration", NonNullable<t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSConstructorType, "TSConstructorType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSDeclareFunction, "TSDeclareFunction", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSDeclareMethodComputed, "TSDeclareMethod", t.ClassBody> | NodePath<t.TSDeclareMethodNonComputed, "TSDeclareMethod", t.ClassBody> | NodePath<t.TSEnumBody, "TSEnumBody", t.TSEnumDeclaration> | NodePath<t.TSEnumDeclaration, "TSEnumDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSEnumMember, "TSEnumMember", t.TSEnumBody> | NodePath<t.TSExportAssignment, "TSExportAssignment", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSExternalModuleReference, "TSExternalModuleReference", t.TSImportEqualsDeclaration> | NodePath<t.TSFunctionType, "TSFunctionType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSImportEqualsDeclaration, "TSImportEqualsDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSImportType, "TSImportType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSTypeQuery | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSIndexSignature, "TSIndexSignature", NonNullable<t.ClassBody | t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSIndexedAccessType, "TSIndexedAccessType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSInferType, "TSInferType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSInstantiationExpression, "TSInstantiationExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSInterfaceBody, "TSInterfaceBody", t.TSInterfaceDeclaration> | NodePath<t.TSInterfaceDeclaration, "TSInterfaceDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSInterfaceHeritage, "TSInterfaceHeritage", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSIntersectionType, "TSIntersectionType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSIntrinsicKeyword, "TSIntrinsicKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSLiteralType, "TSLiteralType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSMappedType, "TSMappedType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSMethodSignature, "TSMethodSignature", NonNullable<t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSModuleBlock, "TSModuleBlock", t.TSModuleDeclaration> | NodePath<t.TSModuleDeclaration, "TSModuleDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSNamedTupleMember, "TSNamedTupleMember", t.TSTupleType> | NodePath<t.TSNamespaceExportDeclaration, "TSNamespaceExportDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSNeverKeyword, "TSNeverKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSNonNullExpression, "TSNonNullExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSNullKeyword, "TSNullKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSNumberKeyword, "TSNumberKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSObjectKeyword, "TSObjectKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSOptionalType, "TSOptionalType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSParameterProperty, "TSParameterProperty", NonNullable<t.ClassMethod | t.ClassPrivateMethod | t.TSDeclareMethod>> | NodePath<t.TSParenthesizedType, "TSParenthesizedType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSPropertySignature, "TSPropertySignature", NonNullable<t.TSInterfaceBody | t.TSTypeLiteral>> | NodePath<t.TSQualifiedName, "TSQualifiedName", NonNullable<t.TSImportEqualsDeclaration | t.TSImportType | t.TSModuleDeclaration | t.TSQualifiedName | t.TSTypeQuery | t.TSTypeReference>> | NodePath<t.TSRestType, "TSRestType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSSatisfiesExpression, "TSSatisfiesExpression", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSStringKeyword, "TSStringKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSSymbolKeyword, "TSSymbolKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTemplateLiteralType, "TSTemplateLiteralType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSThisType, "TSThisType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSTypePredicate | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTupleType, "TSTupleType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeAliasDeclaration, "TSTypeAliasDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TSTypeAnnotation, "TSTypeAnnotation", NonNullable<t.Identifier | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentPattern | t.ClassAccessorProperty | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectPattern | t.Placeholder | t.RestElement | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSIndexSignature | t.TSMethodSignature | t.TSPropertySignature | t.TSTypePredicate>> | NodePath<t.TSTypeAssertion, "TSTypeAssertion", NonNullable<t.ArrayExpression | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.RestElement | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TSTypeLiteral, "TSTypeLiteral", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeOperator, "TSTypeOperator", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeParameter, "TSTypeParameter", NonNullable<t.TSInferType | t.TSTypeParameterDeclaration>> | NodePath<t.TSTypeParameterDeclaration, "TSTypeParameterDeclaration", NonNullable<t.ArrowFunctionExpression | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateMethod | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.TSCallSignatureDeclaration | t.TSConstructSignatureDeclaration | t.TSConstructorType | t.TSDeclareFunction | t.TSDeclareMethod | t.TSFunctionType | t.TSInterfaceDeclaration | t.TSMethodSignature | t.TSTypeAliasDeclaration>> | NodePath<t.TSTypeParameterInstantiation, "TSTypeParameterInstantiation", NonNullable<t.CallExpression | t.ClassDeclaration | t.ClassExpression | t.JSXOpeningElement | t.NewExpression | t.OptionalCallExpression | t.TSClassImplements | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression>> | NodePath<t.TSTypePredicate, "TSTypePredicate", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeQuery, "TSTypeQuery", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSTypeReference, "TSTypeReference", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSUndefinedKeyword, "TSUndefinedKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSUnionType, "TSUnionType", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSUnknownKeyword, "TSUnknownKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TSVoidKeyword, "TSVoidKeyword", NonNullable<t.TSArrayType | t.TSAsExpression | t.TSConditionalType | t.TSIndexedAccessType | t.TSIntersectionType | t.TSMappedType | t.TSNamedTupleMember | t.TSOptionalType | t.TSParenthesizedType | t.TSRestType | t.TSSatisfiesExpression | t.TSTemplateLiteralType | t.TSTupleType | t.TSTypeAliasDeclaration | t.TSTypeAnnotation | t.TSTypeAssertion | t.TSTypeOperator | t.TSTypeParameter | t.TSTypeParameterInstantiation | t.TSUnionType | t.TemplateLiteral>> | NodePath<t.TaggedTemplateExpression, "TaggedTemplateExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TemplateElement, "TemplateElement", NonNullable<t.TSTemplateLiteralType | t.TemplateLiteral>> | NodePath<t.TemplateLiteral, "TemplateLiteral", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ThisExpression, "ThisExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSImportEqualsDeclaration | t.TSImportType | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSModuleDeclaration | t.TSNonNullExpression | t.TSPropertySignature | t.TSQualifiedName | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TSTypeQuery | t.TSTypeReference | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.ThisTypeAnnotation, "ThisTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.ThrowStatement, "ThrowStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TopicReference, "TopicReference", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TryStatement, "TryStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TupleTypeAnnotation, "TupleTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.TypeAlias, "TypeAlias", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | t.DeclaredPredicate | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.TypeAnnotation, "TypeAnnotation", NonNullable<t.Identifier | t.ArrayPattern | t.ArrowFunctionExpression | t.AssignmentPattern | t.ClassAccessorProperty | t.ClassMethod | t.ClassPrivateMethod | t.ClassPrivateProperty | t.ClassProperty | t.DeclareExportDeclaration | t.DeclareModuleExports | t.DeclaredPredicate | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectPattern | t.Placeholder | t.RestElement | t.TypeCastExpression | t.TypeParameter>> | NodePath<t.TypeCastExpression, "TypeCastExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.DeclareExportDeclaration | t.DeclaredPredicate | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.TypeParameter, "TypeParameter", NonNullable<t.DeclareExportDeclaration | t.DeclaredPredicate | t.TypeParameterDeclaration>> | NodePath<t.TypeParameterDeclaration, "TypeParameterDeclaration", NonNullable<t.ArrowFunctionExpression | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateMethod | t.DeclareClass | t.DeclareExportDeclaration | t.DeclareInterface | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionDeclaration | t.FunctionExpression | t.FunctionTypeAnnotation | t.InterfaceDeclaration | t.ObjectMethod | t.OpaqueType | t.TypeAlias>> | NodePath<t.TypeParameterInstantiation, "TypeParameterInstantiation", NonNullable<t.CallExpression | t.ClassDeclaration | t.ClassExpression | t.ClassImplements | t.DeclareExportDeclaration | t.DeclaredPredicate | t.GenericTypeAnnotation | t.InterfaceExtends | t.JSXOpeningElement | t.NewExpression | t.OptionalCallExpression | t.TaggedTemplateExpression>> | NodePath<t.TypeofTypeAnnotation, "TypeofTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.UnaryExpression, "UnaryExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSLiteralType | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.UnionTypeAnnotation, "UnionTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.UpdateExpression, "UpdateExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>> | NodePath<t.V8IntrinsicIdentifier, "V8IntrinsicIdentifier", NonNullable<t.CallExpression | t.NewExpression>> | NodePath<t.VariableDeclaration, "VariableDeclaration", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ExportNamedDeclaration | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.VariableDeclarator, "VariableDeclarator", t.VariableDeclaration> | NodePath<t.Variance, "Variance", NonNullable<t.ClassAccessorProperty | t.ClassPrivateProperty | t.ClassProperty | t.DeclareExportDeclaration | t.DeclaredPredicate | t.ObjectTypeIndexer | t.ObjectTypeProperty | t.TypeParameter>> | NodePath<t.VoidPattern, "VoidPattern", NonNullable<t.ArrayPattern | t.ArrowFunctionExpression | t.ClassMethod | t.ClassPrivateMethod | t.FunctionDeclaration | t.FunctionExpression | t.ObjectMethod | t.ObjectProperty | t.TSDeclareFunction | t.TSDeclareMethod | t.VariableDeclarator>> | NodePath<t.VoidTypeAnnotation, "VoidTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | t.DeclaredPredicate | t.FunctionTypeAnnotation | t.FunctionTypeParam | t.IndexedAccessType | t.IntersectionTypeAnnotation | t.NullableTypeAnnotation | t.ObjectTypeCallProperty | t.ObjectTypeIndexer | t.ObjectTypeInternalSlot | t.ObjectTypeProperty | t.ObjectTypeSpreadProperty | t.OpaqueType | t.OptionalIndexedAccessType | t.TupleTypeAnnotation | t.TypeAlias | t.TypeAnnotation | t.TypeParameter | t.TypeParameterInstantiation | t.TypeofTypeAnnotation | t.UnionTypeAnnotation>> | NodePath<t.WhileStatement, "WhileStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.WithStatement, "WithStatement", NonNullable<t.BlockStatement | t.DoWhileStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.LabeledStatement | t.Program | t.StaticBlock | t.SwitchCase | t.TSModuleBlock | t.WhileStatement | t.WithStatement>> | NodePath<t.YieldExpression, "YieldExpression", NonNullable<t.ArrayExpression | t.ArrowFunctionExpression | t.AssignmentExpression | t.AssignmentPattern | t.AwaitExpression | t.BinaryExpression | t.BindExpression | t.CallExpression | t.ClassAccessorProperty | t.ClassDeclaration | t.ClassExpression | t.ClassMethod | t.ClassPrivateProperty | t.ClassProperty | t.ConditionalExpression | t.Decorator | t.DoWhileStatement | t.ExportDefaultDeclaration | t.ExpressionStatement | t.ForInStatement | t.ForOfStatement | t.ForStatement | t.IfStatement | t.ImportExpression | t.JSXExpressionContainer | t.JSXSpreadAttribute | t.JSXSpreadChild | t.LogicalExpression | t.MemberExpression | t.NewExpression | t.ObjectMethod | t.ObjectProperty | t.OptionalCallExpression | t.OptionalMemberExpression | t.ParenthesizedExpression | t.ReturnStatement | t.SequenceExpression | t.SpreadElement | t.SwitchCase | t.SwitchStatement | t.TSAsExpression | t.TSClassImplements | t.TSDeclareMethod | t.TSEnumMember | t.TSExportAssignment | t.TSInstantiationExpression | t.TSInterfaceHeritage | t.TSMethodSignature | t.TSNonNullExpression | t.TSPropertySignature | t.TSSatisfiesExpression | t.TSTypeAssertion | t.TaggedTemplateExpression | t.TemplateLiteral | t.ThrowStatement | t.TypeCastExpression | t.UnaryExpression | t.VariableDeclarator | t.WhileStatement | t.WithStatement | t.YieldExpression>>> | null | undefined;
4437
4378
  declare function getOrCreateCachedPaths(node: Node, parentPath?: NodePath_Final | null): Map<any, any>;
4438
4379
 
4439
4380
  declare const __cache_ts_clear: typeof clear;