@babel/traverse 8.0.0-rc.3 → 8.0.0-rc.4
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 +46 -32
- package/lib/index.js +113 -123
- package/lib/index.js.map +1 -1
- package/package.json +9 -9
package/lib/index.d.ts
CHANGED
|
@@ -117,7 +117,6 @@ declare class Scope {
|
|
|
117
117
|
getLabel(name: string): 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>> | undefined;
|
|
118
118
|
registerLabel(path: NodePath_Final<t.LabeledStatement>): void;
|
|
119
119
|
registerDeclaration(path: NodePath_Final<t.Node>): void;
|
|
120
|
-
buildUndefinedNode(): t.UnaryExpression;
|
|
121
120
|
registerConstantViolation(path: NodePath_Final<t.Node>): void;
|
|
122
121
|
registerBinding(kind: Binding["kind"], path: NodePath_Final<t.Node>, bindingPath?: NodePath_Final<t.Node>): void;
|
|
123
122
|
addGlobal(node: t.Identifier | t.JSXIdentifier): void;
|
|
@@ -224,15 +223,6 @@ declare class Hub implements HubInterface {
|
|
|
224
223
|
buildError(node: Node, msg: string, Error?: new (msg: string) => Error): Error;
|
|
225
224
|
}
|
|
226
225
|
|
|
227
|
-
declare class TraversalContext<S = unknown> {
|
|
228
|
-
constructor(opts: ExplodedTraverseOptions<S>, state: S);
|
|
229
|
-
state: S;
|
|
230
|
-
opts: ExplodedTraverseOptions<S>;
|
|
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;
|
|
234
|
-
}
|
|
235
|
-
|
|
236
226
|
interface VirtualTypeAliases {
|
|
237
227
|
BindingIdentifier: t.Identifier;
|
|
238
228
|
BlockScoped: t.FunctionDeclaration | t.ClassDeclaration | t.VariableDeclaration;
|
|
@@ -874,6 +864,27 @@ interface VisitorBase<S> extends VisitNodeObject<S, t.Node>, VisitorBaseNodes<S>
|
|
|
874
864
|
type Visitor<S = unknown> = VisitorBase<S> | ExplodedVisitor<S>;
|
|
875
865
|
type VisitNode<S, P extends t.Node> = VisitNodeFunction<S, P> | VisitNodeObject<S, P>;
|
|
876
866
|
type VisitNodeFunction<S, P extends t.Node> = (this: S, path: NodePath_Final<P>, state: S) => void;
|
|
867
|
+
type Split$1<S extends string> = S extends `${infer L}|${infer R}` ? L | Split$1<R> : S;
|
|
868
|
+
type ToNode<S extends string, N = Split$1<S>> = N extends keyof t.Aliases ? t.Aliases[N] : N extends keyof VirtualTypeAliases ? VirtualTypeAliases[N] : Extract<t.Node, {
|
|
869
|
+
type: N;
|
|
870
|
+
}>;
|
|
871
|
+
type OptionKeys = keyof TraverseOptions;
|
|
872
|
+
type VisitorProp<S, K extends string> = K extends OptionKeys ? TraverseOptions[K] : VisitNode<S, ToNode<K>>;
|
|
873
|
+
type TraverseOptions = {
|
|
874
|
+
scope?: Scope;
|
|
875
|
+
noScope?: boolean;
|
|
876
|
+
denylist?: string[];
|
|
877
|
+
shouldSkip?: (node: NodePath_Final) => boolean;
|
|
878
|
+
};
|
|
879
|
+
|
|
880
|
+
declare class TraversalContext<S = unknown> {
|
|
881
|
+
constructor(opts: TraverseOptions & ExplodedVisitor<S>, state: S);
|
|
882
|
+
state: S;
|
|
883
|
+
opts: TraverseOptions & ExplodedVisitor<S>;
|
|
884
|
+
queue: NodePath_Final<t.Node | null>[] | null;
|
|
885
|
+
priorityQueue: NodePath_Final<t.Node | null>[] | null;
|
|
886
|
+
maybeQueue(path: NodePath_Final<t.Node | null>, notPriority?: boolean): void;
|
|
887
|
+
}
|
|
877
888
|
|
|
878
889
|
/**
|
|
879
890
|
* Starting at the parent path of the current `NodePath` and going up the
|
|
@@ -955,7 +966,7 @@ declare function replaceWith<R extends NodePath_Final<t.Node>>(this: NodePath_Fi
|
|
|
955
966
|
* extremely important to retain original semantics.
|
|
956
967
|
*/
|
|
957
968
|
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.DeclaredPredicate | 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.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.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.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.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.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.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.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.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.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.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.BinaryExpressionIn, "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.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.BinaryExpressionNotIn, "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.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.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.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.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.DeclaredPredicate | 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.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.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.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.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.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.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.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.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.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.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.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.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.DeclaredPredicate | 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.DeclaredPredicate | 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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.DeclaredPredicate | 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.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.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.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.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.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.OptionalMemberExpressionComputed, "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.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.OptionalMemberExpressionNonComputed, "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.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.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.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.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.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.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.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.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.DeclaredPredicate | t.Decorator | t.DoWhileStatement | t.EnumStringMember | t.ExportAllDeclaration | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ExportNamespaceSpecifier | 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.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.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.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.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.TSInterfaceHeritage, "TSInterfaceHeritage", NonNullable<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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.DeclareExportAllDeclaration, "DeclareExportAllDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareExportDeclaration, "DeclareExportDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareFunction, "DeclareFunction", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareInterface, "DeclareInterface", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareModule, "DeclareModule", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareModuleExports, "DeclareModuleExports", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareOpaqueType, "DeclareOpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareTypeAlias, "DeclareTypeAlias", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareVariable, "DeclareVariable", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.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.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.ExportAllDeclaration, "ExportAllDeclaration", 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.ExportDefaultDeclaration, "ExportDefaultDeclaration", 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.ExportNamedDeclaration, "ExportNamedDeclaration", 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.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.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.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.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.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.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.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>>)[];
|
|
958
|
-
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.DeclaredPredicate | 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.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.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.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.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.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.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.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.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.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.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.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.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.BigIntLiteralTypeAnnotation, "BigIntLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.BinaryExpressionIn, "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.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.BinaryExpressionNotIn, "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.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.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.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.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.DeclaredPredicate | 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.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.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.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.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.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.ClassImplements, "ClassImplements", NonNullable<t.ClassDeclaration | t.ClassExpression | t.DeclareClass | t.DeclareExportDeclaration>> | 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.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.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.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.DeclareExportAllDeclaration, "DeclareExportAllDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareExportDeclaration, "DeclareExportDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareFunction, "DeclareFunction", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareInterface, "DeclareInterface", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareModule, "DeclareModule", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareModuleExports, "DeclareModuleExports", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareOpaqueType, "DeclareOpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareTypeAlias, "DeclareTypeAlias", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareVariable, "DeclareVariable", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclaredPredicate, "DeclaredPredicate", NonNullable<t.ArrowFunctionExpression | t.DeclareExportDeclaration | t.DeclareFunction | 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.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.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.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.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.EnumDeclaration>> | NodePath<t.EnumBooleanMember, "EnumBooleanMember", NonNullable<t.DeclareExportDeclaration | t.EnumBooleanBody>> | NodePath<t.EnumDeclaration, "EnumDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.EnumDefaultedMember, "EnumDefaultedMember", NonNullable<t.DeclareExportDeclaration | t.EnumStringBody | t.EnumSymbolBody>> | NodePath<t.EnumNumberBody, "EnumNumberBody", NonNullable<t.DeclareExportDeclaration | t.EnumDeclaration>> | NodePath<t.EnumNumberMember, "EnumNumberMember", NonNullable<t.DeclareExportDeclaration | t.EnumNumberBody>> | NodePath<t.EnumStringBody, "EnumStringBody", NonNullable<t.DeclareExportDeclaration | t.EnumDeclaration>> | NodePath<t.EnumStringMember, "EnumStringMember", NonNullable<t.DeclareExportDeclaration | t.EnumStringBody>> | NodePath<t.EnumSymbolBody, "EnumSymbolBody", NonNullable<t.DeclareExportDeclaration | t.EnumDeclaration>> | NodePath<t.ExistsTypeAnnotation, "ExistsTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.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.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.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.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.FunctionTypeAnnotation, "FunctionTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.FunctionTypeAnnotation>> | NodePath<t.GenericTypeAnnotation, "GenericTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.CallExpression | t.NewExpression>> | 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.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.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.ImportNamespaceSpecifier, "ImportNamespaceSpecifier", t.ImportDeclaration> | NodePath<t.ImportSpecifier, "ImportSpecifier", t.ImportDeclaration> | NodePath<t.IndexedAccessType, "IndexedAccessType", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.DeclareFunction | t.FunctionDeclaration | t.FunctionExpression>> | NodePath<t.InterfaceDeclaration, "InterfaceDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.InterfaceDeclaration | t.InterfaceTypeAnnotation>> | NodePath<t.InterfaceTypeAnnotation, "InterfaceTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.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.DeclaredPredicate | 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.DeclaredPredicate | 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.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.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.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.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.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.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.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.MixedTypeAnnotation, "MixedTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.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.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.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.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.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.NullLiteralTypeAnnotation, "NullLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.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.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.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.DeclaredPredicate | 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.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.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.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.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.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.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeIndexer, "ObjectTypeIndexer", NonNullable<t.DeclareExportDeclaration | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeInternalSlot, "ObjectTypeInternalSlot", NonNullable<t.DeclareExportDeclaration | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeProperty, "ObjectTypeProperty", NonNullable<t.DeclareExportDeclaration | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeSpreadProperty, "ObjectTypeSpreadProperty", NonNullable<t.DeclareExportDeclaration | t.ObjectTypeAnnotation>> | NodePath<t.OpaqueType, "OpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.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.OptionalIndexedAccessType, "OptionalIndexedAccessType", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.OptionalMemberExpressionComputed, "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.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.OptionalMemberExpressionNonComputed, "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.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.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.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.Placeholder, "Placeholder", NonNullable<t.Node>> | NodePath<t.PrivateName, "PrivateName", NonNullable<t.BinaryExpression | t.ClassAccessorProperty | t.ClassPrivateMethod | t.ClassPrivateProperty | t.MemberExpression | t.ObjectProperty | t.OptionalMemberExpression>> | NodePath<t.Program, "Program", NonNullable<t.File | t.ModuleExpression>> | NodePath<t.QualifiedTypeIdentifier, "QualifiedTypeIdentifier", NonNullable<t.DeclareExportDeclaration | 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.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.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.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.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.DeclaredPredicate | t.Decorator | t.DoWhileStatement | t.EnumStringMember | t.ExportAllDeclaration | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ExportNamespaceSpecifier | 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.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.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.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.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.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.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.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.TSInterfaceBody, "TSInterfaceBody", t.TSInterfaceDeclaration> | NodePath<t.TSInterfaceDeclaration, "TSInterfaceDeclaration", 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.TSInterfaceHeritage, "TSInterfaceHeritage", NonNullable<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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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>>)[];
|
|
969
|
+
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.DeclaredPredicate | 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.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.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.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.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.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.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.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.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.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.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.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.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.BigIntLiteralTypeAnnotation, "BigIntLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.BinaryExpressionIn, "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.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.BinaryExpressionNotIn, "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.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.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.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.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.DeclaredPredicate | 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.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.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.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.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.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.ClassImplements, "ClassImplements", NonNullable<t.ClassDeclaration | t.ClassExpression | t.DeclareClass | t.DeclareExportDeclaration>> | 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.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.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.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.DeclareExportAllDeclaration, "DeclareExportAllDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareExportDeclaration, "DeclareExportDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareFunction, "DeclareFunction", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareInterface, "DeclareInterface", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareModule, "DeclareModule", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareModuleExports, "DeclareModuleExports", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareOpaqueType, "DeclareOpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareTypeAlias, "DeclareTypeAlias", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareVariable, "DeclareVariable", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclaredPredicate, "DeclaredPredicate", NonNullable<t.ArrowFunctionExpression | t.DeclareExportDeclaration | t.DeclareFunction | 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.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.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.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.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.EnumDeclaration>> | NodePath<t.EnumBooleanMember, "EnumBooleanMember", NonNullable<t.DeclareExportDeclaration | t.EnumBooleanBody>> | NodePath<t.EnumDeclaration, "EnumDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.EnumDefaultedMember, "EnumDefaultedMember", NonNullable<t.DeclareExportDeclaration | t.EnumStringBody | t.EnumSymbolBody>> | NodePath<t.EnumNumberBody, "EnumNumberBody", NonNullable<t.DeclareExportDeclaration | t.EnumDeclaration>> | NodePath<t.EnumNumberMember, "EnumNumberMember", NonNullable<t.DeclareExportDeclaration | t.EnumNumberBody>> | NodePath<t.EnumStringBody, "EnumStringBody", NonNullable<t.DeclareExportDeclaration | t.EnumDeclaration>> | NodePath<t.EnumStringMember, "EnumStringMember", NonNullable<t.DeclareExportDeclaration | t.EnumStringBody>> | NodePath<t.EnumSymbolBody, "EnumSymbolBody", NonNullable<t.DeclareExportDeclaration | t.EnumDeclaration>> | NodePath<t.ExistsTypeAnnotation, "ExistsTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.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.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.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.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.FunctionTypeAnnotation, "FunctionTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.FunctionTypeAnnotation>> | NodePath<t.GenericTypeAnnotation, "GenericTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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", t.CallExpression> | 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.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.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.ImportNamespaceSpecifier, "ImportNamespaceSpecifier", t.ImportDeclaration> | NodePath<t.ImportSpecifier, "ImportSpecifier", t.ImportDeclaration> | NodePath<t.IndexedAccessType, "IndexedAccessType", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.DeclareFunction | t.FunctionDeclaration | t.FunctionExpression>> | NodePath<t.InterfaceDeclaration, "InterfaceDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.InterfaceDeclaration | t.InterfaceTypeAnnotation>> | NodePath<t.InterfaceTypeAnnotation, "InterfaceTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.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.DeclaredPredicate | 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.DeclaredPredicate | 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.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.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.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.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.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.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.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.MixedTypeAnnotation, "MixedTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.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.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.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.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.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.NullLiteralTypeAnnotation, "NullLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.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.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.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.DeclaredPredicate | 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.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.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.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.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.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.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeIndexer, "ObjectTypeIndexer", NonNullable<t.DeclareExportDeclaration | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeInternalSlot, "ObjectTypeInternalSlot", NonNullable<t.DeclareExportDeclaration | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeProperty, "ObjectTypeProperty", NonNullable<t.DeclareExportDeclaration | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeSpreadProperty, "ObjectTypeSpreadProperty", NonNullable<t.DeclareExportDeclaration | t.ObjectTypeAnnotation>> | NodePath<t.OpaqueType, "OpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.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.OptionalIndexedAccessType, "OptionalIndexedAccessType", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.OptionalMemberExpressionComputed, "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.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.OptionalMemberExpressionNonComputed, "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.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.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.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.Placeholder, "Placeholder", NonNullable<t.Node>> | NodePath<t.PrivateName, "PrivateName", NonNullable<t.BinaryExpression | t.ClassAccessorProperty | t.ClassPrivateMethod | t.ClassPrivateProperty | t.MemberExpression | t.ObjectProperty | t.OptionalMemberExpression>> | NodePath<t.Program, "Program", NonNullable<t.File | t.ModuleExpression>> | NodePath<t.QualifiedTypeIdentifier, "QualifiedTypeIdentifier", NonNullable<t.DeclareExportDeclaration | 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.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.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.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.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.DeclaredPredicate | t.Decorator | t.DoWhileStatement | t.EnumStringMember | t.ExportAllDeclaration | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ExportNamespaceSpecifier | 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.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.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>> | 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.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.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.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.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.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.TSInterfaceBody, "TSInterfaceBody", t.TSInterfaceDeclaration> | NodePath<t.TSInterfaceDeclaration, "TSInterfaceDeclaration", 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.TSInterfaceHeritage, "TSInterfaceHeritage", NonNullable<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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.V8IntrinsicIdentifier, "V8IntrinsicIdentifier", t.CallExpression> | 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.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.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.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>>)[];
|
|
959
970
|
|
|
960
971
|
/**
|
|
961
972
|
* Walk the input `node` and statically evaluate if it's truthy.
|
|
@@ -996,7 +1007,6 @@ declare function evaluate(this: NodePath_Final): {
|
|
|
996
1007
|
deopt: NodePath_Final | null;
|
|
997
1008
|
};
|
|
998
1009
|
|
|
999
|
-
declare function toComputedKey(this: NodePath_Final): t.PrivateName | t.Expression;
|
|
1000
1010
|
declare function ensureBlock(this: NodePath_Final<t.Loop | t.WithStatement | t.Function | t.LabeledStatement | t.CatchClause>): void;
|
|
1001
1011
|
/**
|
|
1002
1012
|
* Given an arbitrary function, process its content as if it were an arrow function, moving references
|
|
@@ -1004,13 +1014,13 @@ declare function ensureBlock(this: NodePath_Final<t.Loop | t.WithStatement | t.F
|
|
|
1004
1014
|
* you have wrapped some set of items in an IIFE or other function, but want "this", "arguments", and super"
|
|
1005
1015
|
* to continue behaving as expected.
|
|
1006
1016
|
*/
|
|
1007
|
-
declare function unwrapFunctionEnvironment(this: NodePath_Final<t.
|
|
1017
|
+
declare function unwrapFunctionEnvironment(this: NodePath_Final<t.ArrayExpression | t.FunctionExpression | t.FunctionDeclaration>): void;
|
|
1008
1018
|
/**
|
|
1009
1019
|
* Convert a given arrow function into a normal ES5 function expression.
|
|
1010
1020
|
*/
|
|
1011
1021
|
declare function arrowFunctionToExpression(this: NodePath_Final<t.ArrowFunctionExpression>, { allowInsertArrow, allowInsertArrowWithRest, noNewArrows, }?: {
|
|
1012
|
-
allowInsertArrow?: boolean
|
|
1013
|
-
allowInsertArrowWithRest?: boolean
|
|
1022
|
+
allowInsertArrow?: boolean;
|
|
1023
|
+
allowInsertArrowWithRest?: boolean;
|
|
1014
1024
|
noNewArrows?: boolean;
|
|
1015
1025
|
}): NodePath_Final<Exclude<t.Function, t.Method | t.ArrowFunctionExpression> | t.CallExpression>;
|
|
1016
1026
|
declare function splitExportDeclaration(this: NodePath_Final<t.ExportDefaultDeclaration | t.ExportNamedDeclaration>): NodePath_Final<t.Declaration>;
|
|
@@ -4263,7 +4273,6 @@ declare const methods: {
|
|
|
4263
4273
|
replaceInline: typeof replaceInline;
|
|
4264
4274
|
evaluateTruthy: typeof evaluateTruthy;
|
|
4265
4275
|
evaluate: typeof evaluate;
|
|
4266
|
-
toComputedKey: typeof toComputedKey;
|
|
4267
4276
|
ensureBlock: typeof ensureBlock;
|
|
4268
4277
|
unwrapFunctionEnvironment: typeof unwrapFunctionEnvironment;
|
|
4269
4278
|
arrowFunctionToExpression: typeof arrowFunctionToExpression;
|
|
@@ -4343,7 +4352,7 @@ declare const NodePath_Final: {
|
|
|
4343
4352
|
scope: Scope;
|
|
4344
4353
|
contexts: TraversalContext[];
|
|
4345
4354
|
state: any;
|
|
4346
|
-
opts:
|
|
4355
|
+
opts: TraverseOptions & ExplodedVisitor;
|
|
4347
4356
|
_traverseFlags: number;
|
|
4348
4357
|
get removed(): boolean;
|
|
4349
4358
|
set removed(arg: boolean);
|
|
@@ -4364,8 +4373,10 @@ declare const NodePath_Final: {
|
|
|
4364
4373
|
getData(key: string | symbol, def?: any): any;
|
|
4365
4374
|
hasNode(): boolean;
|
|
4366
4375
|
buildCodeFrameError(msg: string, Error?: new () => Error): Error;
|
|
4367
|
-
traverse<T>(this: NodePath_Final, visitor:
|
|
4368
|
-
traverse(this: NodePath_Final, visitor:
|
|
4376
|
+
traverse<S, T extends object>(this: NodePath_Final, visitor: { [P in keyof T]: VisitorProp<S, P & string>; }, state: S): void;
|
|
4377
|
+
traverse<T extends object>(this: NodePath_Final, visitor: { [P in keyof T]: VisitorProp<any, P & string>; }): void;
|
|
4378
|
+
traverse<S>(this: NodePath_Final, visitor: TraverseOptions & Visitor<S>, state: S): void;
|
|
4379
|
+
traverse(this: NodePath_Final, visitor: TraverseOptions & Visitor<any>): void;
|
|
4369
4380
|
set(key: string, node: any): void;
|
|
4370
4381
|
getPathLocation(this: NodePath_Final<t.Node | null>): string;
|
|
4371
4382
|
debug(this: NodePath_Final<t.Node | null>, message: string): void;
|
|
@@ -4391,7 +4402,7 @@ declare let scope: WeakMap<Node, Scope>;
|
|
|
4391
4402
|
declare function clear(): void;
|
|
4392
4403
|
declare function clearPath(): void;
|
|
4393
4404
|
declare function clearScope(): void;
|
|
4394
|
-
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.DeclaredPredicate | 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.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.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.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.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.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.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.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.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.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.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.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.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.BigIntLiteralTypeAnnotation, "BigIntLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.BinaryExpressionIn, "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.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.BinaryExpressionNotIn, "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.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.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.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.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.DeclaredPredicate | 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.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.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.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.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.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.ClassImplements, "ClassImplements", NonNullable<t.ClassDeclaration | t.ClassExpression | t.DeclareClass | t.DeclareExportDeclaration>> | 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.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.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.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.DeclareExportAllDeclaration, "DeclareExportAllDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareExportDeclaration, "DeclareExportDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareFunction, "DeclareFunction", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareInterface, "DeclareInterface", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareModule, "DeclareModule", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareModuleExports, "DeclareModuleExports", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareOpaqueType, "DeclareOpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareTypeAlias, "DeclareTypeAlias", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareVariable, "DeclareVariable", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclaredPredicate, "DeclaredPredicate", NonNullable<t.ArrowFunctionExpression | t.DeclareExportDeclaration | t.DeclareFunction | 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.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.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.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.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.EnumDeclaration>> | NodePath<t.EnumBooleanMember, "EnumBooleanMember", NonNullable<t.DeclareExportDeclaration | t.EnumBooleanBody>> | NodePath<t.EnumDeclaration, "EnumDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.EnumDefaultedMember, "EnumDefaultedMember", NonNullable<t.DeclareExportDeclaration | t.EnumStringBody | t.EnumSymbolBody>> | NodePath<t.EnumNumberBody, "EnumNumberBody", NonNullable<t.DeclareExportDeclaration | t.EnumDeclaration>> | NodePath<t.EnumNumberMember, "EnumNumberMember", NonNullable<t.DeclareExportDeclaration | t.EnumNumberBody>> | NodePath<t.EnumStringBody, "EnumStringBody", NonNullable<t.DeclareExportDeclaration | t.EnumDeclaration>> | NodePath<t.EnumStringMember, "EnumStringMember", NonNullable<t.DeclareExportDeclaration | t.EnumStringBody>> | NodePath<t.EnumSymbolBody, "EnumSymbolBody", NonNullable<t.DeclareExportDeclaration | t.EnumDeclaration>> | NodePath<t.ExistsTypeAnnotation, "ExistsTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.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.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.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.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.FunctionTypeAnnotation, "FunctionTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.FunctionTypeAnnotation>> | NodePath<t.GenericTypeAnnotation, "GenericTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.CallExpression | t.NewExpression>> | 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.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.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.ImportNamespaceSpecifier, "ImportNamespaceSpecifier", t.ImportDeclaration> | NodePath<t.ImportSpecifier, "ImportSpecifier", t.ImportDeclaration> | NodePath<t.IndexedAccessType, "IndexedAccessType", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.DeclareFunction | t.FunctionDeclaration | t.FunctionExpression>> | NodePath<t.InterfaceDeclaration, "InterfaceDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.InterfaceDeclaration | t.InterfaceTypeAnnotation>> | NodePath<t.InterfaceTypeAnnotation, "InterfaceTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.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.DeclaredPredicate | 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.DeclaredPredicate | 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.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.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.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.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.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.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.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.MixedTypeAnnotation, "MixedTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.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.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.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.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.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.NullLiteralTypeAnnotation, "NullLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.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.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.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.DeclaredPredicate | 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.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.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.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.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.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.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeIndexer, "ObjectTypeIndexer", NonNullable<t.DeclareExportDeclaration | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeInternalSlot, "ObjectTypeInternalSlot", NonNullable<t.DeclareExportDeclaration | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeProperty, "ObjectTypeProperty", NonNullable<t.DeclareExportDeclaration | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeSpreadProperty, "ObjectTypeSpreadProperty", NonNullable<t.DeclareExportDeclaration | t.ObjectTypeAnnotation>> | NodePath<t.OpaqueType, "OpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.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.OptionalIndexedAccessType, "OptionalIndexedAccessType", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.OptionalMemberExpressionComputed, "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.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.OptionalMemberExpressionNonComputed, "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.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.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.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.Placeholder, "Placeholder", NonNullable<Node>> | NodePath<t.PrivateName, "PrivateName", NonNullable<t.BinaryExpression | t.ClassAccessorProperty | t.ClassPrivateMethod | t.ClassPrivateProperty | t.MemberExpression | t.ObjectProperty | t.OptionalMemberExpression>> | NodePath<t.Program, "Program", NonNullable<t.File | t.ModuleExpression>> | NodePath<t.QualifiedTypeIdentifier, "QualifiedTypeIdentifier", NonNullable<t.DeclareExportDeclaration | 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.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.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.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.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.DeclaredPredicate | t.Decorator | t.DoWhileStatement | t.EnumStringMember | t.ExportAllDeclaration | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ExportNamespaceSpecifier | 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.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.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.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.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.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.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.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.TSInterfaceBody, "TSInterfaceBody", t.TSInterfaceDeclaration> | NodePath<t.TSInterfaceDeclaration, "TSInterfaceDeclaration", 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.TSInterfaceHeritage, "TSInterfaceHeritage", NonNullable<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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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>>> | null | undefined;
|
|
4405
|
+
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.DeclaredPredicate | 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.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.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.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.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.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.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.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.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.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.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.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.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.BigIntLiteralTypeAnnotation, "BigIntLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.BinaryExpressionIn, "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.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.BinaryExpressionNotIn, "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.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.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.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.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.DeclaredPredicate | 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.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.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.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.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.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.ClassImplements, "ClassImplements", NonNullable<t.ClassDeclaration | t.ClassExpression | t.DeclareClass | t.DeclareExportDeclaration>> | 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.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.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.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.DeclareExportAllDeclaration, "DeclareExportAllDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareExportDeclaration, "DeclareExportDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareFunction, "DeclareFunction", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareInterface, "DeclareInterface", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareModule, "DeclareModule", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareModuleExports, "DeclareModuleExports", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareOpaqueType, "DeclareOpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareTypeAlias, "DeclareTypeAlias", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclareVariable, "DeclareVariable", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.DeclaredPredicate, "DeclaredPredicate", NonNullable<t.ArrowFunctionExpression | t.DeclareExportDeclaration | t.DeclareFunction | 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.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.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.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.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.EnumDeclaration>> | NodePath<t.EnumBooleanMember, "EnumBooleanMember", NonNullable<t.DeclareExportDeclaration | t.EnumBooleanBody>> | NodePath<t.EnumDeclaration, "EnumDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.EnumDefaultedMember, "EnumDefaultedMember", NonNullable<t.DeclareExportDeclaration | t.EnumStringBody | t.EnumSymbolBody>> | NodePath<t.EnumNumberBody, "EnumNumberBody", NonNullable<t.DeclareExportDeclaration | t.EnumDeclaration>> | NodePath<t.EnumNumberMember, "EnumNumberMember", NonNullable<t.DeclareExportDeclaration | t.EnumNumberBody>> | NodePath<t.EnumStringBody, "EnumStringBody", NonNullable<t.DeclareExportDeclaration | t.EnumDeclaration>> | NodePath<t.EnumStringMember, "EnumStringMember", NonNullable<t.DeclareExportDeclaration | t.EnumStringBody>> | NodePath<t.EnumSymbolBody, "EnumSymbolBody", NonNullable<t.DeclareExportDeclaration | t.EnumDeclaration>> | NodePath<t.ExistsTypeAnnotation, "ExistsTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.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.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.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.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.FunctionTypeAnnotation, "FunctionTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.FunctionTypeAnnotation>> | NodePath<t.GenericTypeAnnotation, "GenericTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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", t.CallExpression> | 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.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.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.ImportNamespaceSpecifier, "ImportNamespaceSpecifier", t.ImportDeclaration> | NodePath<t.ImportSpecifier, "ImportSpecifier", t.ImportDeclaration> | NodePath<t.IndexedAccessType, "IndexedAccessType", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.DeclareFunction | t.FunctionDeclaration | t.FunctionExpression>> | NodePath<t.InterfaceDeclaration, "InterfaceDeclaration", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.InterfaceDeclaration | t.InterfaceTypeAnnotation>> | NodePath<t.InterfaceTypeAnnotation, "InterfaceTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.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.DeclaredPredicate | 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.DeclaredPredicate | 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.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.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.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.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.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.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.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.MixedTypeAnnotation, "MixedTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.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.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.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.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.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.NullLiteralTypeAnnotation, "NullLiteralTypeAnnotation", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.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.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.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.DeclaredPredicate | 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.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.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.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.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.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.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeIndexer, "ObjectTypeIndexer", NonNullable<t.DeclareExportDeclaration | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeInternalSlot, "ObjectTypeInternalSlot", NonNullable<t.DeclareExportDeclaration | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeProperty, "ObjectTypeProperty", NonNullable<t.DeclareExportDeclaration | t.ObjectTypeAnnotation>> | NodePath<t.ObjectTypeSpreadProperty, "ObjectTypeSpreadProperty", NonNullable<t.DeclareExportDeclaration | t.ObjectTypeAnnotation>> | NodePath<t.OpaqueType, "OpaqueType", NonNullable<t.BlockStatement | t.DeclareExportDeclaration | 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.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.OptionalIndexedAccessType, "OptionalIndexedAccessType", NonNullable<t.ArrayTypeAnnotation | t.DeclareExportDeclaration | t.DeclareOpaqueType | t.DeclareTypeAlias | 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.OptionalMemberExpressionComputed, "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.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.OptionalMemberExpressionNonComputed, "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.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.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.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.Placeholder, "Placeholder", NonNullable<Node>> | NodePath<t.PrivateName, "PrivateName", NonNullable<t.BinaryExpression | t.ClassAccessorProperty | t.ClassPrivateMethod | t.ClassPrivateProperty | t.MemberExpression | t.ObjectProperty | t.OptionalMemberExpression>> | NodePath<t.Program, "Program", NonNullable<t.File | t.ModuleExpression>> | NodePath<t.QualifiedTypeIdentifier, "QualifiedTypeIdentifier", NonNullable<t.DeclareExportDeclaration | 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.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.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.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.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.DeclaredPredicate | t.Decorator | t.DoWhileStatement | t.EnumStringMember | t.ExportAllDeclaration | t.ExportDefaultDeclaration | t.ExportNamedDeclaration | t.ExportNamespaceSpecifier | 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.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.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>> | 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.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.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.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.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.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.TSInterfaceBody, "TSInterfaceBody", t.TSInterfaceDeclaration> | NodePath<t.TSInterfaceDeclaration, "TSInterfaceDeclaration", 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.TSInterfaceHeritage, "TSInterfaceHeritage", NonNullable<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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.V8IntrinsicIdentifier, "V8IntrinsicIdentifier", t.CallExpression> | 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.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.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.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>>> | null | undefined;
|
|
4395
4406
|
declare function getOrCreateCachedPaths(node: Node, parentPath?: NodePath_Final | null): Map<any, any>;
|
|
4396
4407
|
|
|
4397
4408
|
declare const __cache_ts_clear: typeof clear;
|
|
@@ -4422,12 +4433,15 @@ declare function isExplodedVisitor(visitor: Visitor): visitor is ExplodedVisitor
|
|
|
4422
4433
|
* * `enter` and `exit` functions are wrapped in arrays, to ease merging of
|
|
4423
4434
|
* visitors
|
|
4424
4435
|
*/
|
|
4436
|
+
declare function explode$1<S, T extends object>(visitor: {
|
|
4437
|
+
[P in keyof T]: VisitorProp<any, P & string>;
|
|
4438
|
+
}): ExplodedVisitor<S>;
|
|
4425
4439
|
declare function explode$1<S>(visitor: Visitor<S>): ExplodedVisitor<S>;
|
|
4426
4440
|
|
|
4427
4441
|
declare function verify$1(visitor: Visitor): void;
|
|
4428
4442
|
declare function merge<State>(visitors: Visitor<State>[]): ExplodedVisitor<State>;
|
|
4429
4443
|
declare function merge(visitors: Visitor<unknown>[], states?: any[], wrapper?: Function | null): ExplodedVisitor<unknown>;
|
|
4430
|
-
declare function environmentVisitor<S>(visitor: Visitor<S>):
|
|
4444
|
+
declare function environmentVisitor<S>(visitor: Visitor<S>): ExplodedVisitor<S>;
|
|
4431
4445
|
|
|
4432
4446
|
type __visitors_ts_VisitWrapper<S = any> = VisitWrapper<S>;
|
|
4433
4447
|
declare const __visitors_ts_environmentVisitor: typeof environmentVisitor;
|
|
@@ -4437,25 +4451,25 @@ declare namespace __visitors_ts {
|
|
|
4437
4451
|
export { type __visitors_ts_VisitWrapper as VisitWrapper, __visitors_ts_environmentVisitor as environmentVisitor, explode$1 as explode, __visitors_ts_isExplodedVisitor as isExplodedVisitor, __visitors_ts_merge as merge, verify$1 as verify };
|
|
4438
4452
|
}
|
|
4439
4453
|
|
|
4440
|
-
|
|
4441
|
-
|
|
4442
|
-
|
|
4443
|
-
|
|
4444
|
-
|
|
4445
|
-
}
|
|
4446
|
-
|
|
4447
|
-
declare function traverse
|
|
4448
|
-
declare function traverse(parent: t.Node, opts: TraverseOptions, scope?: Scope | null, state?: any, parentPath?: NodePath_Final, visitSelf?: boolean): void;
|
|
4454
|
+
declare function traverse<S, T extends object>(parent: t.Node, opts: {
|
|
4455
|
+
[P in keyof T]: VisitorProp<S, P & string>;
|
|
4456
|
+
}, scope: Scope | null | undefined, state: S, parentPath?: NodePath_Final, visitSelf?: boolean): void;
|
|
4457
|
+
declare function traverse<T extends object>(parent: t.Node, opts: {
|
|
4458
|
+
[P in keyof T]: VisitorProp<any, P & string>;
|
|
4459
|
+
}, scope?: Scope | null, state?: any, parentPath?: NodePath_Final, visitSelf?: boolean): void;
|
|
4460
|
+
declare function traverse<S>(parent: t.Node, opts: TraverseOptions & Visitor<S>, scope: Scope | null | undefined, state: S, parentPath?: NodePath_Final, visitSelf?: boolean): void;
|
|
4461
|
+
declare function traverse(parent: t.Node, opts: TraverseOptions & Visitor<any>, scope?: Scope | null, state?: any, parentPath?: NodePath_Final, visitSelf?: boolean): void;
|
|
4449
4462
|
declare namespace traverse {
|
|
4450
4463
|
var visitors: typeof __visitors_ts;
|
|
4451
4464
|
var verify: typeof verify$1;
|
|
4452
4465
|
var explode: typeof explode$1;
|
|
4453
4466
|
var cheap: (node: t.Node, enter: (node: t.Node) => void) => void;
|
|
4454
|
-
var node: (node: t.Node, opts:
|
|
4467
|
+
var node: (node: t.Node, opts: TraverseOptions & ExplodedVisitor, scope?: Scope, state?: any, path?: NodePath_Final, skipKeys?: Record<string, boolean>) => void;
|
|
4455
4468
|
var clearNode: (node: t.Node, opts?: RemovePropertiesOptions) => void;
|
|
4456
4469
|
var removeProperties: (tree: t.Node, opts?: RemovePropertiesOptions) => t.Node;
|
|
4457
4470
|
var hasType: (tree: t.Node, type: t.Node["type"], denylistTypes?: string[]) => boolean;
|
|
4458
4471
|
var cache: typeof __cache_ts;
|
|
4459
4472
|
}
|
|
4473
|
+
//# sourceMappingURL=index.d.ts.map
|
|
4460
4474
|
|
|
4461
|
-
export { Binding, type BindingKind, type
|
|
4475
|
+
export { Binding, type BindingKind, type ExplodedVisitor, Hub, type HubInterface, NodePath_Final as NodePath, Scope, type TraverseOptions, type VisitWrapper, type Visitor, type VisitorBase, traverse as default, __visitors_ts as visitors };
|