@putout/babel 3.2.0 → 4.0.0

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.
Files changed (3) hide show
  1. package/bundle/index.d.ts +4258 -6
  2. package/bundle/index.js +43203 -40527
  3. package/package.json +14 -14
package/bundle/index.d.ts CHANGED
@@ -1,8 +1,4260 @@
1
- export * from '@babel/parser';
2
- import { Node } from '@babel/types';
3
- import * as types from '@babel/types';
4
- export { types };
5
- export { traverse } from '@babel/types';
1
+ // NOTE: This file is autogenerated. Do not modify.
2
+ // See packages/babel-types/scripts/generators/typescript-legacy.js for script used.
3
+
4
+ interface BaseComment {
5
+ value: string;
6
+ start: number;
7
+ end: number;
8
+ loc: SourceLocation;
9
+ type: "CommentBlock" | "CommentLine";
10
+ }
11
+
12
+ interface CommentBlock extends BaseComment {
13
+ type: "CommentBlock";
14
+ }
15
+
16
+ interface CommentLine extends BaseComment {
17
+ type: "CommentLine";
18
+ }
19
+
20
+ type Comment = CommentBlock | CommentLine;
21
+
22
+ interface SourceLocation {
23
+ start: {
24
+ line: number;
25
+ column: number;
26
+ };
27
+
28
+ end: {
29
+ line: number;
30
+ column: number;
31
+ };
32
+ }
33
+
34
+ interface BaseNode {
35
+ leadingComments: ReadonlyArray<Comment> | null;
36
+ innerComments: ReadonlyArray<Comment> | null;
37
+ trailingComments: ReadonlyArray<Comment> | null;
38
+ start: number | null;
39
+ end: number | null;
40
+ loc: SourceLocation | null;
41
+ type: Node["type"];
42
+ extra?: Record<string, unknown>;
43
+ }
44
+
45
+ type Node = Accessor | AnyTypeAnnotation | ArgumentPlaceholder | ArrayExpression | ArrayPattern | ArrayTypeAnnotation | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BigIntLiteral | Binary | BinaryExpression | BindExpression | Block | BlockParent | BlockStatement | BooleanLiteral | BooleanLiteralTypeAnnotation | BooleanTypeAnnotation | BreakStatement | CallExpression | CatchClause | Class | ClassAccessorProperty | ClassBody | ClassDeclaration | ClassExpression | ClassImplements | ClassMethod | ClassPrivateMethod | ClassPrivateProperty | ClassProperty | CompletionStatement | Conditional | ConditionalExpression | ContinueStatement | DebuggerStatement | DecimalLiteral | Declaration | DeclareClass | DeclareExportAllDeclaration | DeclareExportDeclaration | DeclareFunction | DeclareInterface | DeclareModule | DeclareModuleExports | DeclareOpaqueType | DeclareTypeAlias | DeclareVariable | DeclaredPredicate | Decorator | Directive | DirectiveLiteral | DoExpression | DoWhileStatement | EmptyStatement | EmptyTypeAnnotation | EnumBody | EnumBooleanBody | EnumBooleanMember | EnumDeclaration | EnumDefaultedMember | EnumMember | EnumNumberBody | EnumNumberMember | EnumStringBody | EnumStringMember | EnumSymbolBody | ExistsTypeAnnotation | ExportAllDeclaration | ExportDeclaration | ExportDefaultDeclaration | ExportDefaultSpecifier | ExportNamedDeclaration | ExportNamespaceSpecifier | ExportSpecifier | Expression | ExpressionStatement | ExpressionWrapper | File | Flow | FlowBaseAnnotation | FlowDeclaration | FlowPredicate | FlowType | For | ForInStatement | ForOfStatement | ForStatement | ForXStatement | Function | FunctionDeclaration | FunctionExpression | FunctionParent | FunctionTypeAnnotation | FunctionTypeParam | GenericTypeAnnotation | Identifier | IfStatement | Immutable | Import | ImportAttribute | ImportDeclaration | ImportDefaultSpecifier | ImportExpression | ImportNamespaceSpecifier | ImportOrExportDeclaration | ImportSpecifier | IndexedAccessType | InferredPredicate | InterfaceDeclaration | InterfaceExtends | InterfaceTypeAnnotation | InterpreterDirective | IntersectionTypeAnnotation | JSX | JSXAttribute | JSXClosingElement | JSXClosingFragment | JSXElement | JSXEmptyExpression | JSXExpressionContainer | JSXFragment | JSXIdentifier | JSXMemberExpression | JSXNamespacedName | JSXOpeningElement | JSXOpeningFragment | JSXSpreadAttribute | JSXSpreadChild | JSXText | LVal | LabeledStatement | Literal | LogicalExpression | Loop | MemberExpression | MetaProperty | Method | Miscellaneous | MixedTypeAnnotation | ModuleDeclaration | ModuleExpression | ModuleSpecifier | NewExpression | Noop | NullLiteral | NullLiteralTypeAnnotation | NullableTypeAnnotation | NumberLiteral | NumberLiteralTypeAnnotation | NumberTypeAnnotation | NumericLiteral | ObjectExpression | ObjectMember | ObjectMethod | ObjectPattern | ObjectProperty | ObjectTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalCallExpression | OptionalIndexedAccessType | OptionalMemberExpression | ParenthesizedExpression | Pattern | PatternLike | PipelineBareFunction | PipelinePrimaryTopicReference | PipelineTopicExpression | Placeholder | Private | PrivateName | Program | Property | Pureish | QualifiedTypeIdentifier | RecordExpression | RegExpLiteral | RegexLiteral | RestElement | RestProperty | ReturnStatement | Scopable | SequenceExpression | SpreadElement | SpreadProperty | Standardized | Statement | StaticBlock | StringLiteral | StringLiteralTypeAnnotation | StringTypeAnnotation | Super | SwitchCase | SwitchStatement | SymbolTypeAnnotation | TSAnyKeyword | TSArrayType | TSAsExpression | TSBaseType | TSBigIntKeyword | TSBooleanKeyword | TSCallSignatureDeclaration | TSConditionalType | TSConstructSignatureDeclaration | TSConstructorType | TSDeclareFunction | TSDeclareMethod | TSEntityName | TSEnumBody | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSExpressionWithTypeArguments | TSExternalModuleReference | TSFunctionType | TSImportEqualsDeclaration | TSImportType | TSIndexSignature | TSIndexedAccessType | TSInferType | TSInstantiationExpression | TSInterfaceBody | TSInterfaceDeclaration | TSIntersectionType | TSIntrinsicKeyword | TSLiteralType | TSMappedType | TSMethodSignature | TSModuleBlock | TSModuleDeclaration | TSNamedTupleMember | TSNamespaceExportDeclaration | TSNeverKeyword | TSNonNullExpression | TSNullKeyword | TSNumberKeyword | TSObjectKeyword | TSOptionalType | TSParameterProperty | TSParenthesizedType | TSPropertySignature | TSQualifiedName | TSRestType | TSSatisfiesExpression | TSStringKeyword | TSSymbolKeyword | TSTemplateLiteralType | TSThisType | TSTupleType | TSType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeElement | TSTypeLiteral | TSTypeOperator | TSTypeParameter | TSTypeParameterDeclaration | TSTypeParameterInstantiation | TSTypePredicate | TSTypeQuery | TSTypeReference | TSUndefinedKeyword | TSUnionType | TSUnknownKeyword | TSVoidKeyword | TaggedTemplateExpression | TemplateElement | TemplateLiteral | Terminatorless | ThisExpression | ThisTypeAnnotation | ThrowStatement | TopicReference | TryStatement | TupleExpression | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeCastExpression | TypeParameter | TypeParameterDeclaration | TypeParameterInstantiation | TypeScript | TypeofTypeAnnotation | UnaryExpression | UnaryLike | UnionTypeAnnotation | UpdateExpression | UserWhitespacable | V8IntrinsicIdentifier | VariableDeclaration | VariableDeclarator | Variance | VoidTypeAnnotation | While | WhileStatement | WithStatement | YieldExpression;
46
+
47
+ interface ArrayExpression extends BaseNode {
48
+ type: "ArrayExpression";
49
+ elements: Array<null | Expression | SpreadElement>;
50
+ }
51
+
52
+ interface AssignmentExpression extends BaseNode {
53
+ type: "AssignmentExpression";
54
+ operator: string;
55
+ left: LVal | OptionalMemberExpression;
56
+ right: Expression;
57
+ }
58
+
59
+ interface BinaryExpression extends BaseNode {
60
+ type: "BinaryExpression";
61
+ operator: "+" | "-" | "/" | "%" | "*" | "**" | "&" | "|" | ">>" | ">>>" | "<<" | "^" | "==" | "===" | "!=" | "!==" | "in" | "instanceof" | ">" | "<" | ">=" | "<=" | "|>";
62
+ left: Expression | PrivateName;
63
+ right: Expression;
64
+ }
65
+
66
+ interface InterpreterDirective extends BaseNode {
67
+ type: "InterpreterDirective";
68
+ value: string;
69
+ }
70
+
71
+ interface Directive extends BaseNode {
72
+ type: "Directive";
73
+ value: DirectiveLiteral;
74
+ }
75
+
76
+ interface DirectiveLiteral extends BaseNode {
77
+ type: "DirectiveLiteral";
78
+ value: string;
79
+ }
80
+
81
+ interface BlockStatement extends BaseNode {
82
+ type: "BlockStatement";
83
+ body: Array<Statement>;
84
+ directives: Array<Directive>;
85
+ }
86
+
87
+ interface BreakStatement extends BaseNode {
88
+ type: "BreakStatement";
89
+ label: Identifier | null;
90
+ }
91
+
92
+ interface CallExpression extends BaseNode {
93
+ type: "CallExpression";
94
+ callee: Expression | Super | V8IntrinsicIdentifier;
95
+ arguments: Array<Expression | SpreadElement | ArgumentPlaceholder>;
96
+ optional: boolean | null;
97
+ typeArguments: TypeParameterInstantiation | null;
98
+ typeParameters: TSTypeParameterInstantiation | null;
99
+ }
100
+
101
+ interface CatchClause extends BaseNode {
102
+ type: "CatchClause";
103
+ param: Identifier | ArrayPattern | ObjectPattern | null;
104
+ body: BlockStatement;
105
+ }
106
+
107
+ interface ConditionalExpression extends BaseNode {
108
+ type: "ConditionalExpression";
109
+ test: Expression;
110
+ consequent: Expression;
111
+ alternate: Expression;
112
+ }
113
+
114
+ interface ContinueStatement extends BaseNode {
115
+ type: "ContinueStatement";
116
+ label: Identifier | null;
117
+ }
118
+
119
+ interface DebuggerStatement extends BaseNode {
120
+ type: "DebuggerStatement";
121
+ }
122
+
123
+ interface DoWhileStatement extends BaseNode {
124
+ type: "DoWhileStatement";
125
+ test: Expression;
126
+ body: Statement;
127
+ }
128
+
129
+ interface EmptyStatement extends BaseNode {
130
+ type: "EmptyStatement";
131
+ }
132
+
133
+ interface ExpressionStatement extends BaseNode {
134
+ type: "ExpressionStatement";
135
+ expression: Expression;
136
+ }
137
+
138
+ interface File extends BaseNode {
139
+ type: "File";
140
+ program: Program;
141
+ comments: Array<CommentBlock | CommentLine> | null;
142
+ tokens: Array<any> | null;
143
+ }
144
+
145
+ interface ForInStatement extends BaseNode {
146
+ type: "ForInStatement";
147
+ left: VariableDeclaration | LVal;
148
+ right: Expression;
149
+ body: Statement;
150
+ }
151
+
152
+ interface ForStatement extends BaseNode {
153
+ type: "ForStatement";
154
+ init: VariableDeclaration | Expression | null;
155
+ test: Expression | null;
156
+ update: Expression | null;
157
+ body: Statement;
158
+ }
159
+
160
+ interface FunctionDeclaration extends BaseNode {
161
+ type: "FunctionDeclaration";
162
+ id: Identifier | null;
163
+ params: Array<Identifier | Pattern | RestElement>;
164
+ body: BlockStatement;
165
+ generator: boolean;
166
+ async: boolean;
167
+ declare: boolean | null;
168
+ predicate: DeclaredPredicate | InferredPredicate | null;
169
+ returnType: TypeAnnotation | TSTypeAnnotation | Noop | null;
170
+ typeParameters: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
171
+ }
172
+
173
+ interface FunctionExpression extends BaseNode {
174
+ type: "FunctionExpression";
175
+ id: Identifier | null;
176
+ params: Array<Identifier | Pattern | RestElement>;
177
+ body: BlockStatement;
178
+ generator: boolean;
179
+ async: boolean;
180
+ predicate: DeclaredPredicate | InferredPredicate | null;
181
+ returnType: TypeAnnotation | TSTypeAnnotation | Noop | null;
182
+ typeParameters: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
183
+ }
184
+
185
+ interface Identifier extends BaseNode {
186
+ type: "Identifier";
187
+ name: string;
188
+ decorators: Array<Decorator> | null;
189
+ optional: boolean | null;
190
+ typeAnnotation: TypeAnnotation | TSTypeAnnotation | Noop | null;
191
+ }
192
+
193
+ interface IfStatement extends BaseNode {
194
+ type: "IfStatement";
195
+ test: Expression;
196
+ consequent: Statement;
197
+ alternate: Statement | null;
198
+ }
199
+
200
+ interface LabeledStatement extends BaseNode {
201
+ type: "LabeledStatement";
202
+ label: Identifier;
203
+ body: Statement;
204
+ }
205
+
206
+ interface StringLiteral extends BaseNode {
207
+ type: "StringLiteral";
208
+ value: string;
209
+ }
210
+
211
+ interface NumericLiteral extends BaseNode {
212
+ type: "NumericLiteral";
213
+ value: number;
214
+ }
215
+
216
+ interface NullLiteral extends BaseNode {
217
+ type: "NullLiteral";
218
+ }
219
+
220
+ interface BooleanLiteral extends BaseNode {
221
+ type: "BooleanLiteral";
222
+ value: boolean;
223
+ }
224
+
225
+ interface RegExpLiteral extends BaseNode {
226
+ type: "RegExpLiteral";
227
+ pattern: string;
228
+ flags: string;
229
+ }
230
+
231
+ interface LogicalExpression extends BaseNode {
232
+ type: "LogicalExpression";
233
+ operator: "||" | "&&" | "??";
234
+ left: Expression;
235
+ right: Expression;
236
+ }
237
+
238
+ interface MemberExpression extends BaseNode {
239
+ type: "MemberExpression";
240
+ object: Expression | Super;
241
+ property: Expression | Identifier | PrivateName;
242
+ computed: boolean;
243
+ optional: boolean | null;
244
+ }
245
+
246
+ interface NewExpression extends BaseNode {
247
+ type: "NewExpression";
248
+ callee: Expression | Super | V8IntrinsicIdentifier;
249
+ arguments: Array<Expression | SpreadElement | ArgumentPlaceholder>;
250
+ optional: boolean | null;
251
+ typeArguments: TypeParameterInstantiation | null;
252
+ typeParameters: TSTypeParameterInstantiation | null;
253
+ }
254
+
255
+ interface Program extends BaseNode {
256
+ type: "Program";
257
+ body: Array<Statement>;
258
+ directives: Array<Directive>;
259
+ sourceType: "script" | "module";
260
+ interpreter: InterpreterDirective | null;
261
+ }
262
+
263
+ interface ObjectExpression extends BaseNode {
264
+ type: "ObjectExpression";
265
+ properties: Array<ObjectMethod | ObjectProperty | SpreadElement>;
266
+ }
267
+
268
+ interface ObjectMethod extends BaseNode {
269
+ type: "ObjectMethod";
270
+ kind: "method" | "get" | "set";
271
+ key: Expression | Identifier | StringLiteral | NumericLiteral | BigIntLiteral;
272
+ params: Array<Identifier | Pattern | RestElement>;
273
+ body: BlockStatement;
274
+ computed: boolean;
275
+ generator: boolean;
276
+ async: boolean;
277
+ decorators: Array<Decorator> | null;
278
+ returnType: TypeAnnotation | TSTypeAnnotation | Noop | null;
279
+ typeParameters: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
280
+ }
281
+
282
+ interface ObjectProperty extends BaseNode {
283
+ type: "ObjectProperty";
284
+ key: Expression | Identifier | StringLiteral | NumericLiteral | BigIntLiteral | DecimalLiteral | PrivateName;
285
+ value: Expression | PatternLike;
286
+ computed: boolean;
287
+ shorthand: boolean;
288
+ decorators: Array<Decorator> | null;
289
+ }
290
+
291
+ interface RestElement extends BaseNode {
292
+ type: "RestElement";
293
+ argument: LVal;
294
+ decorators: Array<Decorator> | null;
295
+ optional: boolean | null;
296
+ typeAnnotation: TypeAnnotation | TSTypeAnnotation | Noop | null;
297
+ }
298
+
299
+ interface ReturnStatement extends BaseNode {
300
+ type: "ReturnStatement";
301
+ argument: Expression | null;
302
+ }
303
+
304
+ interface SequenceExpression extends BaseNode {
305
+ type: "SequenceExpression";
306
+ expressions: Array<Expression>;
307
+ }
308
+
309
+ interface ParenthesizedExpression extends BaseNode {
310
+ type: "ParenthesizedExpression";
311
+ expression: Expression;
312
+ }
313
+
314
+ interface SwitchCase extends BaseNode {
315
+ type: "SwitchCase";
316
+ test: Expression | null;
317
+ consequent: Array<Statement>;
318
+ }
319
+
320
+ interface SwitchStatement extends BaseNode {
321
+ type: "SwitchStatement";
322
+ discriminant: Expression;
323
+ cases: Array<SwitchCase>;
324
+ }
325
+
326
+ interface ThisExpression extends BaseNode {
327
+ type: "ThisExpression";
328
+ }
329
+
330
+ interface ThrowStatement extends BaseNode {
331
+ type: "ThrowStatement";
332
+ argument: Expression;
333
+ }
334
+
335
+ interface TryStatement extends BaseNode {
336
+ type: "TryStatement";
337
+ block: BlockStatement;
338
+ handler: CatchClause | null;
339
+ finalizer: BlockStatement | null;
340
+ }
341
+
342
+ interface UnaryExpression extends BaseNode {
343
+ type: "UnaryExpression";
344
+ operator: "void" | "throw" | "delete" | "!" | "+" | "-" | "~" | "typeof";
345
+ argument: Expression;
346
+ prefix: boolean;
347
+ }
348
+
349
+ interface UpdateExpression extends BaseNode {
350
+ type: "UpdateExpression";
351
+ operator: "++" | "--";
352
+ argument: Expression;
353
+ prefix: boolean;
354
+ }
355
+
356
+ interface VariableDeclaration extends BaseNode {
357
+ type: "VariableDeclaration";
358
+ kind: "var" | "let" | "const" | "using" | "await using";
359
+ declarations: Array<VariableDeclarator>;
360
+ declare: boolean | null;
361
+ }
362
+
363
+ interface VariableDeclarator extends BaseNode {
364
+ type: "VariableDeclarator";
365
+ id: LVal;
366
+ init: Expression | null;
367
+ definite: boolean | null;
368
+ }
369
+
370
+ interface WhileStatement extends BaseNode {
371
+ type: "WhileStatement";
372
+ test: Expression;
373
+ body: Statement;
374
+ }
375
+
376
+ interface WithStatement extends BaseNode {
377
+ type: "WithStatement";
378
+ object: Expression;
379
+ body: Statement;
380
+ }
381
+
382
+ interface AssignmentPattern extends BaseNode {
383
+ type: "AssignmentPattern";
384
+ left: Identifier | ObjectPattern | ArrayPattern | MemberExpression | TSAsExpression | TSSatisfiesExpression | TSTypeAssertion | TSNonNullExpression;
385
+ right: Expression;
386
+ decorators: Array<Decorator> | null;
387
+ optional: boolean | null;
388
+ typeAnnotation: TypeAnnotation | TSTypeAnnotation | Noop | null;
389
+ }
390
+
391
+ interface ArrayPattern extends BaseNode {
392
+ type: "ArrayPattern";
393
+ elements: Array<null | PatternLike | LVal>;
394
+ decorators: Array<Decorator> | null;
395
+ optional: boolean | null;
396
+ typeAnnotation: TypeAnnotation | TSTypeAnnotation | Noop | null;
397
+ }
398
+
399
+ interface ArrowFunctionExpression extends BaseNode {
400
+ type: "ArrowFunctionExpression";
401
+ params: Array<Identifier | Pattern | RestElement>;
402
+ body: BlockStatement | Expression;
403
+ async: boolean;
404
+ expression: boolean;
405
+ generator: boolean;
406
+ predicate: DeclaredPredicate | InferredPredicate | null;
407
+ returnType: TypeAnnotation | TSTypeAnnotation | Noop | null;
408
+ typeParameters: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
409
+ }
410
+
411
+ interface ClassBody extends BaseNode {
412
+ type: "ClassBody";
413
+ body: Array<ClassMethod | ClassPrivateMethod | ClassProperty | ClassPrivateProperty | ClassAccessorProperty | TSDeclareMethod | TSIndexSignature | StaticBlock>;
414
+ }
415
+
416
+ interface ClassExpression extends BaseNode {
417
+ type: "ClassExpression";
418
+ id: Identifier | null;
419
+ superClass: Expression | null;
420
+ body: ClassBody;
421
+ decorators: Array<Decorator> | null;
422
+ implements: Array<TSExpressionWithTypeArguments | ClassImplements> | null;
423
+ mixins: InterfaceExtends | null;
424
+ superTypeParameters: TypeParameterInstantiation | TSTypeParameterInstantiation | null;
425
+ typeParameters: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
426
+ }
427
+
428
+ interface ClassDeclaration extends BaseNode {
429
+ type: "ClassDeclaration";
430
+ id: Identifier | null;
431
+ superClass: Expression | null;
432
+ body: ClassBody;
433
+ decorators: Array<Decorator> | null;
434
+ abstract: boolean | null;
435
+ declare: boolean | null;
436
+ implements: Array<TSExpressionWithTypeArguments | ClassImplements> | null;
437
+ mixins: InterfaceExtends | null;
438
+ superTypeParameters: TypeParameterInstantiation | TSTypeParameterInstantiation | null;
439
+ typeParameters: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
440
+ }
441
+
442
+ interface ExportAllDeclaration extends BaseNode {
443
+ type: "ExportAllDeclaration";
444
+ source: StringLiteral;
445
+ assertions: Array<ImportAttribute> | null;
446
+ attributes: Array<ImportAttribute> | null;
447
+ exportKind: "type" | "value" | null;
448
+ }
449
+
450
+ interface ExportDefaultDeclaration extends BaseNode {
451
+ type: "ExportDefaultDeclaration";
452
+ declaration: TSDeclareFunction | FunctionDeclaration | ClassDeclaration | Expression;
453
+ exportKind: "value" | null;
454
+ }
455
+
456
+ interface ExportNamedDeclaration extends BaseNode {
457
+ type: "ExportNamedDeclaration";
458
+ declaration: Declaration | null;
459
+ specifiers: Array<ExportSpecifier | ExportDefaultSpecifier | ExportNamespaceSpecifier>;
460
+ source: StringLiteral | null;
461
+ assertions: Array<ImportAttribute> | null;
462
+ attributes: Array<ImportAttribute> | null;
463
+ exportKind: "type" | "value" | null;
464
+ }
465
+
466
+ interface ExportSpecifier extends BaseNode {
467
+ type: "ExportSpecifier";
468
+ local: Identifier;
469
+ exported: Identifier | StringLiteral;
470
+ exportKind: "type" | "value" | null;
471
+ }
472
+
473
+ interface ForOfStatement extends BaseNode {
474
+ type: "ForOfStatement";
475
+ left: VariableDeclaration | LVal;
476
+ right: Expression;
477
+ body: Statement;
478
+ await: boolean;
479
+ }
480
+
481
+ interface ImportDeclaration extends BaseNode {
482
+ type: "ImportDeclaration";
483
+ specifiers: Array<ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier>;
484
+ source: StringLiteral;
485
+ assertions: Array<ImportAttribute> | null;
486
+ attributes: Array<ImportAttribute> | null;
487
+ importKind: "type" | "typeof" | "value" | null;
488
+ module: boolean | null;
489
+ phase: "source" | "defer" | null;
490
+ }
491
+
492
+ interface ImportDefaultSpecifier extends BaseNode {
493
+ type: "ImportDefaultSpecifier";
494
+ local: Identifier;
495
+ }
496
+
497
+ interface ImportNamespaceSpecifier extends BaseNode {
498
+ type: "ImportNamespaceSpecifier";
499
+ local: Identifier;
500
+ }
501
+
502
+ interface ImportSpecifier extends BaseNode {
503
+ type: "ImportSpecifier";
504
+ local: Identifier;
505
+ imported: Identifier | StringLiteral;
506
+ importKind: "type" | "typeof" | "value" | null;
507
+ }
508
+
509
+ interface ImportExpression extends BaseNode {
510
+ type: "ImportExpression";
511
+ source: Expression;
512
+ options: Expression | null;
513
+ phase: "source" | "defer" | null;
514
+ }
515
+
516
+ interface MetaProperty extends BaseNode {
517
+ type: "MetaProperty";
518
+ meta: Identifier;
519
+ property: Identifier;
520
+ }
521
+
522
+ interface ClassMethod extends BaseNode {
523
+ type: "ClassMethod";
524
+ kind: "get" | "set" | "method" | "constructor";
525
+ key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression;
526
+ params: Array<Identifier | Pattern | RestElement | TSParameterProperty>;
527
+ body: BlockStatement;
528
+ computed: boolean;
529
+ static: boolean;
530
+ generator: boolean;
531
+ async: boolean;
532
+ abstract: boolean | null;
533
+ access: "public" | "private" | "protected" | null;
534
+ accessibility: "public" | "private" | "protected" | null;
535
+ decorators: Array<Decorator> | null;
536
+ optional: boolean | null;
537
+ override: boolean;
538
+ returnType: TypeAnnotation | TSTypeAnnotation | Noop | null;
539
+ typeParameters: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
540
+ }
541
+
542
+ interface ObjectPattern extends BaseNode {
543
+ type: "ObjectPattern";
544
+ properties: Array<RestElement | ObjectProperty>;
545
+ decorators: Array<Decorator> | null;
546
+ optional: boolean | null;
547
+ typeAnnotation: TypeAnnotation | TSTypeAnnotation | Noop | null;
548
+ }
549
+
550
+ interface SpreadElement extends BaseNode {
551
+ type: "SpreadElement";
552
+ argument: Expression;
553
+ }
554
+
555
+ interface Super extends BaseNode {
556
+ type: "Super";
557
+ }
558
+
559
+ interface TaggedTemplateExpression extends BaseNode {
560
+ type: "TaggedTemplateExpression";
561
+ tag: Expression;
562
+ quasi: TemplateLiteral;
563
+ typeParameters: TypeParameterInstantiation | TSTypeParameterInstantiation | null;
564
+ }
565
+
566
+ interface TemplateElement extends BaseNode {
567
+ type: "TemplateElement";
568
+ value: { raw: string, cooked?: string };
569
+ tail: boolean;
570
+ }
571
+
572
+ interface TemplateLiteral extends BaseNode {
573
+ type: "TemplateLiteral";
574
+ quasis: Array<TemplateElement>;
575
+ expressions: Array<Expression | TSType>;
576
+ }
577
+
578
+ interface YieldExpression extends BaseNode {
579
+ type: "YieldExpression";
580
+ argument: Expression | null;
581
+ delegate: boolean;
582
+ }
583
+
584
+ interface AwaitExpression extends BaseNode {
585
+ type: "AwaitExpression";
586
+ argument: Expression;
587
+ }
588
+
589
+ interface Import extends BaseNode {
590
+ type: "Import";
591
+ }
592
+
593
+ interface BigIntLiteral extends BaseNode {
594
+ type: "BigIntLiteral";
595
+ value: string;
596
+ }
597
+
598
+ interface ExportNamespaceSpecifier extends BaseNode {
599
+ type: "ExportNamespaceSpecifier";
600
+ exported: Identifier;
601
+ }
602
+
603
+ interface OptionalMemberExpression extends BaseNode {
604
+ type: "OptionalMemberExpression";
605
+ object: Expression;
606
+ property: Expression | Identifier;
607
+ computed: boolean;
608
+ optional: boolean;
609
+ }
610
+
611
+ interface OptionalCallExpression extends BaseNode {
612
+ type: "OptionalCallExpression";
613
+ callee: Expression;
614
+ arguments: Array<Expression | SpreadElement | ArgumentPlaceholder>;
615
+ optional: boolean;
616
+ typeArguments: TypeParameterInstantiation | null;
617
+ typeParameters: TSTypeParameterInstantiation | null;
618
+ }
619
+
620
+ interface ClassProperty extends BaseNode {
621
+ type: "ClassProperty";
622
+ key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression;
623
+ value: Expression | null;
624
+ typeAnnotation: TypeAnnotation | TSTypeAnnotation | Noop | null;
625
+ decorators: Array<Decorator> | null;
626
+ computed: boolean;
627
+ static: boolean;
628
+ abstract: boolean | null;
629
+ accessibility: "public" | "private" | "protected" | null;
630
+ declare: boolean | null;
631
+ definite: boolean | null;
632
+ optional: boolean | null;
633
+ override: boolean;
634
+ readonly: boolean | null;
635
+ variance: Variance | null;
636
+ }
637
+
638
+ interface ClassAccessorProperty extends BaseNode {
639
+ type: "ClassAccessorProperty";
640
+ key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression | PrivateName;
641
+ value: Expression | null;
642
+ typeAnnotation: TypeAnnotation | TSTypeAnnotation | Noop | null;
643
+ decorators: Array<Decorator> | null;
644
+ computed: boolean;
645
+ static: boolean;
646
+ abstract: boolean | null;
647
+ accessibility: "public" | "private" | "protected" | null;
648
+ declare: boolean | null;
649
+ definite: boolean | null;
650
+ optional: boolean | null;
651
+ override: boolean;
652
+ readonly: boolean | null;
653
+ variance: Variance | null;
654
+ }
655
+
656
+ interface ClassPrivateProperty extends BaseNode {
657
+ type: "ClassPrivateProperty";
658
+ key: PrivateName;
659
+ value: Expression | null;
660
+ decorators: Array<Decorator> | null;
661
+ static: boolean;
662
+ definite: boolean | null;
663
+ optional: boolean | null;
664
+ readonly: boolean | null;
665
+ typeAnnotation: TypeAnnotation | TSTypeAnnotation | Noop | null;
666
+ variance: Variance | null;
667
+ }
668
+
669
+ interface ClassPrivateMethod extends BaseNode {
670
+ type: "ClassPrivateMethod";
671
+ kind: "get" | "set" | "method";
672
+ key: PrivateName;
673
+ params: Array<Identifier | Pattern | RestElement | TSParameterProperty>;
674
+ body: BlockStatement;
675
+ static: boolean;
676
+ abstract: boolean | null;
677
+ access: "public" | "private" | "protected" | null;
678
+ accessibility: "public" | "private" | "protected" | null;
679
+ async: boolean;
680
+ computed: boolean;
681
+ decorators: Array<Decorator> | null;
682
+ generator: boolean;
683
+ optional: boolean | null;
684
+ override: boolean;
685
+ returnType: TypeAnnotation | TSTypeAnnotation | Noop | null;
686
+ typeParameters: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
687
+ }
688
+
689
+ interface PrivateName extends BaseNode {
690
+ type: "PrivateName";
691
+ id: Identifier;
692
+ }
693
+
694
+ interface StaticBlock extends BaseNode {
695
+ type: "StaticBlock";
696
+ body: Array<Statement>;
697
+ }
698
+
699
+ interface ImportAttribute extends BaseNode {
700
+ type: "ImportAttribute";
701
+ key: Identifier | StringLiteral;
702
+ value: StringLiteral;
703
+ }
704
+
705
+ interface AnyTypeAnnotation extends BaseNode {
706
+ type: "AnyTypeAnnotation";
707
+ }
708
+
709
+ interface ArrayTypeAnnotation extends BaseNode {
710
+ type: "ArrayTypeAnnotation";
711
+ elementType: FlowType;
712
+ }
713
+
714
+ interface BooleanTypeAnnotation extends BaseNode {
715
+ type: "BooleanTypeAnnotation";
716
+ }
717
+
718
+ interface BooleanLiteralTypeAnnotation extends BaseNode {
719
+ type: "BooleanLiteralTypeAnnotation";
720
+ value: boolean;
721
+ }
722
+
723
+ interface NullLiteralTypeAnnotation extends BaseNode {
724
+ type: "NullLiteralTypeAnnotation";
725
+ }
726
+
727
+ interface ClassImplements extends BaseNode {
728
+ type: "ClassImplements";
729
+ id: Identifier;
730
+ typeParameters: TypeParameterInstantiation | null;
731
+ }
732
+
733
+ interface DeclareClass extends BaseNode {
734
+ type: "DeclareClass";
735
+ id: Identifier;
736
+ typeParameters: TypeParameterDeclaration | null;
737
+ extends: Array<InterfaceExtends> | null;
738
+ body: ObjectTypeAnnotation;
739
+ implements: Array<ClassImplements> | null;
740
+ mixins: Array<InterfaceExtends> | null;
741
+ }
742
+
743
+ interface DeclareFunction extends BaseNode {
744
+ type: "DeclareFunction";
745
+ id: Identifier;
746
+ predicate: DeclaredPredicate | null;
747
+ }
748
+
749
+ interface DeclareInterface extends BaseNode {
750
+ type: "DeclareInterface";
751
+ id: Identifier;
752
+ typeParameters: TypeParameterDeclaration | null;
753
+ extends: Array<InterfaceExtends> | null;
754
+ body: ObjectTypeAnnotation;
755
+ }
756
+
757
+ interface DeclareModule extends BaseNode {
758
+ type: "DeclareModule";
759
+ id: Identifier | StringLiteral;
760
+ body: BlockStatement;
761
+ kind: "CommonJS" | "ES" | null;
762
+ }
763
+
764
+ interface DeclareModuleExports extends BaseNode {
765
+ type: "DeclareModuleExports";
766
+ typeAnnotation: TypeAnnotation;
767
+ }
768
+
769
+ interface DeclareTypeAlias extends BaseNode {
770
+ type: "DeclareTypeAlias";
771
+ id: Identifier;
772
+ typeParameters: TypeParameterDeclaration | null;
773
+ right: FlowType;
774
+ }
775
+
776
+ interface DeclareOpaqueType extends BaseNode {
777
+ type: "DeclareOpaqueType";
778
+ id: Identifier;
779
+ typeParameters: TypeParameterDeclaration | null;
780
+ supertype: FlowType | null;
781
+ impltype: FlowType | null;
782
+ }
783
+
784
+ interface DeclareVariable extends BaseNode {
785
+ type: "DeclareVariable";
786
+ id: Identifier;
787
+ }
788
+
789
+ interface DeclareExportDeclaration extends BaseNode {
790
+ type: "DeclareExportDeclaration";
791
+ declaration: Flow | null;
792
+ specifiers: Array<ExportSpecifier | ExportNamespaceSpecifier> | null;
793
+ source: StringLiteral | null;
794
+ attributes: Array<ImportAttribute> | null;
795
+ assertions: Array<ImportAttribute> | null;
796
+ default: boolean | null;
797
+ }
798
+
799
+ interface DeclareExportAllDeclaration extends BaseNode {
800
+ type: "DeclareExportAllDeclaration";
801
+ source: StringLiteral;
802
+ attributes: Array<ImportAttribute> | null;
803
+ assertions: Array<ImportAttribute> | null;
804
+ exportKind: "type" | "value" | null;
805
+ }
806
+
807
+ interface DeclaredPredicate extends BaseNode {
808
+ type: "DeclaredPredicate";
809
+ value: Flow;
810
+ }
811
+
812
+ interface ExistsTypeAnnotation extends BaseNode {
813
+ type: "ExistsTypeAnnotation";
814
+ }
815
+
816
+ interface FunctionTypeAnnotation extends BaseNode {
817
+ type: "FunctionTypeAnnotation";
818
+ typeParameters: TypeParameterDeclaration | null;
819
+ params: Array<FunctionTypeParam>;
820
+ rest: FunctionTypeParam | null;
821
+ returnType: FlowType;
822
+ this: FunctionTypeParam | null;
823
+ }
824
+
825
+ interface FunctionTypeParam extends BaseNode {
826
+ type: "FunctionTypeParam";
827
+ name: Identifier | null;
828
+ typeAnnotation: FlowType;
829
+ optional: boolean | null;
830
+ }
831
+
832
+ interface GenericTypeAnnotation extends BaseNode {
833
+ type: "GenericTypeAnnotation";
834
+ id: Identifier | QualifiedTypeIdentifier;
835
+ typeParameters: TypeParameterInstantiation | null;
836
+ }
837
+
838
+ interface InferredPredicate extends BaseNode {
839
+ type: "InferredPredicate";
840
+ }
841
+
842
+ interface InterfaceExtends extends BaseNode {
843
+ type: "InterfaceExtends";
844
+ id: Identifier | QualifiedTypeIdentifier;
845
+ typeParameters: TypeParameterInstantiation | null;
846
+ }
847
+
848
+ interface InterfaceDeclaration extends BaseNode {
849
+ type: "InterfaceDeclaration";
850
+ id: Identifier;
851
+ typeParameters: TypeParameterDeclaration | null;
852
+ extends: Array<InterfaceExtends> | null;
853
+ body: ObjectTypeAnnotation;
854
+ }
855
+
856
+ interface InterfaceTypeAnnotation extends BaseNode {
857
+ type: "InterfaceTypeAnnotation";
858
+ extends: Array<InterfaceExtends> | null;
859
+ body: ObjectTypeAnnotation;
860
+ }
861
+
862
+ interface IntersectionTypeAnnotation extends BaseNode {
863
+ type: "IntersectionTypeAnnotation";
864
+ types: Array<FlowType>;
865
+ }
866
+
867
+ interface MixedTypeAnnotation extends BaseNode {
868
+ type: "MixedTypeAnnotation";
869
+ }
870
+
871
+ interface EmptyTypeAnnotation extends BaseNode {
872
+ type: "EmptyTypeAnnotation";
873
+ }
874
+
875
+ interface NullableTypeAnnotation extends BaseNode {
876
+ type: "NullableTypeAnnotation";
877
+ typeAnnotation: FlowType;
878
+ }
879
+
880
+ interface NumberLiteralTypeAnnotation extends BaseNode {
881
+ type: "NumberLiteralTypeAnnotation";
882
+ value: number;
883
+ }
884
+
885
+ interface NumberTypeAnnotation extends BaseNode {
886
+ type: "NumberTypeAnnotation";
887
+ }
888
+
889
+ interface ObjectTypeAnnotation extends BaseNode {
890
+ type: "ObjectTypeAnnotation";
891
+ properties: Array<ObjectTypeProperty | ObjectTypeSpreadProperty>;
892
+ indexers: Array<ObjectTypeIndexer>;
893
+ callProperties: Array<ObjectTypeCallProperty>;
894
+ internalSlots: Array<ObjectTypeInternalSlot>;
895
+ exact: boolean;
896
+ inexact: boolean | null;
897
+ }
898
+
899
+ interface ObjectTypeInternalSlot extends BaseNode {
900
+ type: "ObjectTypeInternalSlot";
901
+ id: Identifier;
902
+ value: FlowType;
903
+ optional: boolean;
904
+ static: boolean;
905
+ method: boolean;
906
+ }
907
+
908
+ interface ObjectTypeCallProperty extends BaseNode {
909
+ type: "ObjectTypeCallProperty";
910
+ value: FlowType;
911
+ static: boolean;
912
+ }
913
+
914
+ interface ObjectTypeIndexer extends BaseNode {
915
+ type: "ObjectTypeIndexer";
916
+ id: Identifier | null;
917
+ key: FlowType;
918
+ value: FlowType;
919
+ variance: Variance | null;
920
+ static: boolean;
921
+ }
922
+
923
+ interface ObjectTypeProperty extends BaseNode {
924
+ type: "ObjectTypeProperty";
925
+ key: Identifier | StringLiteral;
926
+ value: FlowType;
927
+ variance: Variance | null;
928
+ kind: "init" | "get" | "set";
929
+ method: boolean;
930
+ optional: boolean;
931
+ proto: boolean;
932
+ static: boolean;
933
+ }
934
+
935
+ interface ObjectTypeSpreadProperty extends BaseNode {
936
+ type: "ObjectTypeSpreadProperty";
937
+ argument: FlowType;
938
+ }
939
+
940
+ interface OpaqueType extends BaseNode {
941
+ type: "OpaqueType";
942
+ id: Identifier;
943
+ typeParameters: TypeParameterDeclaration | null;
944
+ supertype: FlowType | null;
945
+ impltype: FlowType;
946
+ }
947
+
948
+ interface QualifiedTypeIdentifier extends BaseNode {
949
+ type: "QualifiedTypeIdentifier";
950
+ id: Identifier;
951
+ qualification: Identifier | QualifiedTypeIdentifier;
952
+ }
953
+
954
+ interface StringLiteralTypeAnnotation extends BaseNode {
955
+ type: "StringLiteralTypeAnnotation";
956
+ value: string;
957
+ }
958
+
959
+ interface StringTypeAnnotation extends BaseNode {
960
+ type: "StringTypeAnnotation";
961
+ }
962
+
963
+ interface SymbolTypeAnnotation extends BaseNode {
964
+ type: "SymbolTypeAnnotation";
965
+ }
966
+
967
+ interface ThisTypeAnnotation extends BaseNode {
968
+ type: "ThisTypeAnnotation";
969
+ }
970
+
971
+ interface TupleTypeAnnotation extends BaseNode {
972
+ type: "TupleTypeAnnotation";
973
+ types: Array<FlowType>;
974
+ }
975
+
976
+ interface TypeofTypeAnnotation extends BaseNode {
977
+ type: "TypeofTypeAnnotation";
978
+ argument: FlowType;
979
+ }
980
+
981
+ interface TypeAlias extends BaseNode {
982
+ type: "TypeAlias";
983
+ id: Identifier;
984
+ typeParameters: TypeParameterDeclaration | null;
985
+ right: FlowType;
986
+ }
987
+
988
+ interface TypeAnnotation extends BaseNode {
989
+ type: "TypeAnnotation";
990
+ typeAnnotation: FlowType;
991
+ }
992
+
993
+ interface TypeCastExpression extends BaseNode {
994
+ type: "TypeCastExpression";
995
+ expression: Expression;
996
+ typeAnnotation: TypeAnnotation;
997
+ }
998
+
999
+ interface TypeParameter extends BaseNode {
1000
+ type: "TypeParameter";
1001
+ bound: TypeAnnotation | null;
1002
+ default: FlowType | null;
1003
+ variance: Variance | null;
1004
+ name: string;
1005
+ }
1006
+
1007
+ interface TypeParameterDeclaration extends BaseNode {
1008
+ type: "TypeParameterDeclaration";
1009
+ params: Array<TypeParameter>;
1010
+ }
1011
+
1012
+ interface TypeParameterInstantiation extends BaseNode {
1013
+ type: "TypeParameterInstantiation";
1014
+ params: Array<FlowType>;
1015
+ }
1016
+
1017
+ interface UnionTypeAnnotation extends BaseNode {
1018
+ type: "UnionTypeAnnotation";
1019
+ types: Array<FlowType>;
1020
+ }
1021
+
1022
+ interface Variance extends BaseNode {
1023
+ type: "Variance";
1024
+ kind: "minus" | "plus";
1025
+ }
1026
+
1027
+ interface VoidTypeAnnotation extends BaseNode {
1028
+ type: "VoidTypeAnnotation";
1029
+ }
1030
+
1031
+ interface EnumDeclaration extends BaseNode {
1032
+ type: "EnumDeclaration";
1033
+ id: Identifier;
1034
+ body: EnumBooleanBody | EnumNumberBody | EnumStringBody | EnumSymbolBody;
1035
+ }
1036
+
1037
+ interface EnumBooleanBody extends BaseNode {
1038
+ type: "EnumBooleanBody";
1039
+ members: Array<EnumBooleanMember>;
1040
+ explicitType: boolean;
1041
+ hasUnknownMembers: boolean;
1042
+ }
1043
+
1044
+ interface EnumNumberBody extends BaseNode {
1045
+ type: "EnumNumberBody";
1046
+ members: Array<EnumNumberMember>;
1047
+ explicitType: boolean;
1048
+ hasUnknownMembers: boolean;
1049
+ }
1050
+
1051
+ interface EnumStringBody extends BaseNode {
1052
+ type: "EnumStringBody";
1053
+ members: Array<EnumStringMember | EnumDefaultedMember>;
1054
+ explicitType: boolean;
1055
+ hasUnknownMembers: boolean;
1056
+ }
1057
+
1058
+ interface EnumSymbolBody extends BaseNode {
1059
+ type: "EnumSymbolBody";
1060
+ members: Array<EnumDefaultedMember>;
1061
+ hasUnknownMembers: boolean;
1062
+ }
1063
+
1064
+ interface EnumBooleanMember extends BaseNode {
1065
+ type: "EnumBooleanMember";
1066
+ id: Identifier;
1067
+ init: BooleanLiteral;
1068
+ }
1069
+
1070
+ interface EnumNumberMember extends BaseNode {
1071
+ type: "EnumNumberMember";
1072
+ id: Identifier;
1073
+ init: NumericLiteral;
1074
+ }
1075
+
1076
+ interface EnumStringMember extends BaseNode {
1077
+ type: "EnumStringMember";
1078
+ id: Identifier;
1079
+ init: StringLiteral;
1080
+ }
1081
+
1082
+ interface EnumDefaultedMember extends BaseNode {
1083
+ type: "EnumDefaultedMember";
1084
+ id: Identifier;
1085
+ }
1086
+
1087
+ interface IndexedAccessType extends BaseNode {
1088
+ type: "IndexedAccessType";
1089
+ objectType: FlowType;
1090
+ indexType: FlowType;
1091
+ }
1092
+
1093
+ interface OptionalIndexedAccessType extends BaseNode {
1094
+ type: "OptionalIndexedAccessType";
1095
+ objectType: FlowType;
1096
+ indexType: FlowType;
1097
+ optional: boolean;
1098
+ }
1099
+
1100
+ interface JSXAttribute extends BaseNode {
1101
+ type: "JSXAttribute";
1102
+ name: JSXIdentifier | JSXNamespacedName;
1103
+ value: JSXElement | JSXFragment | StringLiteral | JSXExpressionContainer | null;
1104
+ }
1105
+
1106
+ interface JSXClosingElement extends BaseNode {
1107
+ type: "JSXClosingElement";
1108
+ name: JSXIdentifier | JSXMemberExpression | JSXNamespacedName;
1109
+ }
1110
+
1111
+ interface JSXElement extends BaseNode {
1112
+ type: "JSXElement";
1113
+ openingElement: JSXOpeningElement;
1114
+ closingElement: JSXClosingElement | null;
1115
+ children: Array<JSXText | JSXExpressionContainer | JSXSpreadChild | JSXElement | JSXFragment>;
1116
+ selfClosing: boolean | null;
1117
+ }
1118
+
1119
+ interface JSXEmptyExpression extends BaseNode {
1120
+ type: "JSXEmptyExpression";
1121
+ }
1122
+
1123
+ interface JSXExpressionContainer extends BaseNode {
1124
+ type: "JSXExpressionContainer";
1125
+ expression: Expression | JSXEmptyExpression;
1126
+ }
1127
+
1128
+ interface JSXSpreadChild extends BaseNode {
1129
+ type: "JSXSpreadChild";
1130
+ expression: Expression;
1131
+ }
1132
+
1133
+ interface JSXIdentifier extends BaseNode {
1134
+ type: "JSXIdentifier";
1135
+ name: string;
1136
+ }
1137
+
1138
+ interface JSXMemberExpression extends BaseNode {
1139
+ type: "JSXMemberExpression";
1140
+ object: JSXMemberExpression | JSXIdentifier;
1141
+ property: JSXIdentifier;
1142
+ }
1143
+
1144
+ interface JSXNamespacedName extends BaseNode {
1145
+ type: "JSXNamespacedName";
1146
+ namespace: JSXIdentifier;
1147
+ name: JSXIdentifier;
1148
+ }
1149
+
1150
+ interface JSXOpeningElement extends BaseNode {
1151
+ type: "JSXOpeningElement";
1152
+ name: JSXIdentifier | JSXMemberExpression | JSXNamespacedName;
1153
+ attributes: Array<JSXAttribute | JSXSpreadAttribute>;
1154
+ selfClosing: boolean;
1155
+ typeArguments: TypeParameterInstantiation | null;
1156
+ typeParameters: TSTypeParameterInstantiation | null;
1157
+ }
1158
+
1159
+ interface JSXSpreadAttribute extends BaseNode {
1160
+ type: "JSXSpreadAttribute";
1161
+ argument: Expression;
1162
+ }
1163
+
1164
+ interface JSXText extends BaseNode {
1165
+ type: "JSXText";
1166
+ value: string;
1167
+ }
1168
+
1169
+ interface JSXFragment extends BaseNode {
1170
+ type: "JSXFragment";
1171
+ openingFragment: JSXOpeningFragment;
1172
+ closingFragment: JSXClosingFragment;
1173
+ children: Array<JSXText | JSXExpressionContainer | JSXSpreadChild | JSXElement | JSXFragment>;
1174
+ }
1175
+
1176
+ interface JSXOpeningFragment extends BaseNode {
1177
+ type: "JSXOpeningFragment";
1178
+ }
1179
+
1180
+ interface JSXClosingFragment extends BaseNode {
1181
+ type: "JSXClosingFragment";
1182
+ }
1183
+
1184
+ interface Noop extends BaseNode {
1185
+ type: "Noop";
1186
+ }
1187
+
1188
+ interface Placeholder extends BaseNode {
1189
+ type: "Placeholder";
1190
+ expectedNode: "Identifier" | "StringLiteral" | "Expression" | "Statement" | "Declaration" | "BlockStatement" | "ClassBody" | "Pattern";
1191
+ name: Identifier;
1192
+ decorators: Array<Decorator> | null;
1193
+ optional: boolean | null;
1194
+ typeAnnotation: TypeAnnotation | TSTypeAnnotation | Noop | null;
1195
+ }
1196
+
1197
+ interface V8IntrinsicIdentifier extends BaseNode {
1198
+ type: "V8IntrinsicIdentifier";
1199
+ name: string;
1200
+ }
1201
+
1202
+ interface ArgumentPlaceholder extends BaseNode {
1203
+ type: "ArgumentPlaceholder";
1204
+ }
1205
+
1206
+ interface BindExpression extends BaseNode {
1207
+ type: "BindExpression";
1208
+ object: Expression;
1209
+ callee: Expression;
1210
+ }
1211
+
1212
+ interface Decorator extends BaseNode {
1213
+ type: "Decorator";
1214
+ expression: Expression;
1215
+ }
1216
+
1217
+ interface DoExpression extends BaseNode {
1218
+ type: "DoExpression";
1219
+ body: BlockStatement;
1220
+ async: boolean;
1221
+ }
1222
+
1223
+ interface ExportDefaultSpecifier extends BaseNode {
1224
+ type: "ExportDefaultSpecifier";
1225
+ exported: Identifier;
1226
+ }
1227
+
1228
+ interface RecordExpression extends BaseNode {
1229
+ type: "RecordExpression";
1230
+ properties: Array<ObjectProperty | SpreadElement>;
1231
+ }
1232
+
1233
+ interface TupleExpression extends BaseNode {
1234
+ type: "TupleExpression";
1235
+ elements: Array<Expression | SpreadElement>;
1236
+ }
1237
+
1238
+ interface DecimalLiteral extends BaseNode {
1239
+ type: "DecimalLiteral";
1240
+ value: string;
1241
+ }
1242
+
1243
+ interface ModuleExpression extends BaseNode {
1244
+ type: "ModuleExpression";
1245
+ body: Program;
1246
+ }
1247
+
1248
+ interface TopicReference extends BaseNode {
1249
+ type: "TopicReference";
1250
+ }
1251
+
1252
+ interface PipelineTopicExpression extends BaseNode {
1253
+ type: "PipelineTopicExpression";
1254
+ expression: Expression;
1255
+ }
1256
+
1257
+ interface PipelineBareFunction extends BaseNode {
1258
+ type: "PipelineBareFunction";
1259
+ callee: Expression;
1260
+ }
1261
+
1262
+ interface PipelinePrimaryTopicReference extends BaseNode {
1263
+ type: "PipelinePrimaryTopicReference";
1264
+ }
1265
+
1266
+ interface TSParameterProperty extends BaseNode {
1267
+ type: "TSParameterProperty";
1268
+ parameter: Identifier | AssignmentPattern;
1269
+ accessibility: "public" | "private" | "protected" | null;
1270
+ decorators: Array<Decorator> | null;
1271
+ override: boolean | null;
1272
+ readonly: boolean | null;
1273
+ }
1274
+
1275
+ interface TSDeclareFunction extends BaseNode {
1276
+ type: "TSDeclareFunction";
1277
+ id: Identifier | null;
1278
+ typeParameters: TSTypeParameterDeclaration | Noop | null;
1279
+ params: Array<Identifier | Pattern | RestElement>;
1280
+ returnType: TSTypeAnnotation | Noop | null;
1281
+ async: boolean;
1282
+ declare: boolean | null;
1283
+ generator: boolean;
1284
+ }
1285
+
1286
+ interface TSDeclareMethod extends BaseNode {
1287
+ type: "TSDeclareMethod";
1288
+ decorators: Array<Decorator> | null;
1289
+ key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression;
1290
+ typeParameters: TSTypeParameterDeclaration | Noop | null;
1291
+ params: Array<Identifier | Pattern | RestElement | TSParameterProperty>;
1292
+ returnType: TSTypeAnnotation | Noop | null;
1293
+ abstract: boolean | null;
1294
+ access: "public" | "private" | "protected" | null;
1295
+ accessibility: "public" | "private" | "protected" | null;
1296
+ async: boolean;
1297
+ computed: boolean;
1298
+ generator: boolean;
1299
+ kind: "get" | "set" | "method" | "constructor";
1300
+ optional: boolean | null;
1301
+ override: boolean;
1302
+ static: boolean;
1303
+ }
1304
+
1305
+ interface TSQualifiedName extends BaseNode {
1306
+ type: "TSQualifiedName";
1307
+ left: TSEntityName;
1308
+ right: Identifier;
1309
+ }
1310
+
1311
+ interface TSCallSignatureDeclaration extends BaseNode {
1312
+ type: "TSCallSignatureDeclaration";
1313
+ typeParameters: TSTypeParameterDeclaration | null;
1314
+ parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>;
1315
+ typeAnnotation: TSTypeAnnotation | null;
1316
+ }
1317
+
1318
+ interface TSConstructSignatureDeclaration extends BaseNode {
1319
+ type: "TSConstructSignatureDeclaration";
1320
+ typeParameters: TSTypeParameterDeclaration | null;
1321
+ parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>;
1322
+ typeAnnotation: TSTypeAnnotation | null;
1323
+ }
1324
+
1325
+ interface TSPropertySignature extends BaseNode {
1326
+ type: "TSPropertySignature";
1327
+ key: Expression;
1328
+ typeAnnotation: TSTypeAnnotation | null;
1329
+ computed: boolean;
1330
+ kind: "get" | "set" | null;
1331
+ optional: boolean | null;
1332
+ readonly: boolean | null;
1333
+ }
1334
+
1335
+ interface TSMethodSignature extends BaseNode {
1336
+ type: "TSMethodSignature";
1337
+ key: Expression;
1338
+ typeParameters: TSTypeParameterDeclaration | null;
1339
+ parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>;
1340
+ typeAnnotation: TSTypeAnnotation | null;
1341
+ computed: boolean;
1342
+ kind: "method" | "get" | "set";
1343
+ optional: boolean | null;
1344
+ }
1345
+
1346
+ interface TSIndexSignature extends BaseNode {
1347
+ type: "TSIndexSignature";
1348
+ parameters: Array<Identifier>;
1349
+ typeAnnotation: TSTypeAnnotation | null;
1350
+ readonly: boolean | null;
1351
+ static: boolean | null;
1352
+ }
1353
+
1354
+ interface TSAnyKeyword extends BaseNode {
1355
+ type: "TSAnyKeyword";
1356
+ }
1357
+
1358
+ interface TSBooleanKeyword extends BaseNode {
1359
+ type: "TSBooleanKeyword";
1360
+ }
1361
+
1362
+ interface TSBigIntKeyword extends BaseNode {
1363
+ type: "TSBigIntKeyword";
1364
+ }
1365
+
1366
+ interface TSIntrinsicKeyword extends BaseNode {
1367
+ type: "TSIntrinsicKeyword";
1368
+ }
1369
+
1370
+ interface TSNeverKeyword extends BaseNode {
1371
+ type: "TSNeverKeyword";
1372
+ }
1373
+
1374
+ interface TSNullKeyword extends BaseNode {
1375
+ type: "TSNullKeyword";
1376
+ }
1377
+
1378
+ interface TSNumberKeyword extends BaseNode {
1379
+ type: "TSNumberKeyword";
1380
+ }
1381
+
1382
+ interface TSObjectKeyword extends BaseNode {
1383
+ type: "TSObjectKeyword";
1384
+ }
1385
+
1386
+ interface TSStringKeyword extends BaseNode {
1387
+ type: "TSStringKeyword";
1388
+ }
1389
+
1390
+ interface TSSymbolKeyword extends BaseNode {
1391
+ type: "TSSymbolKeyword";
1392
+ }
1393
+
1394
+ interface TSUndefinedKeyword extends BaseNode {
1395
+ type: "TSUndefinedKeyword";
1396
+ }
1397
+
1398
+ interface TSUnknownKeyword extends BaseNode {
1399
+ type: "TSUnknownKeyword";
1400
+ }
1401
+
1402
+ interface TSVoidKeyword extends BaseNode {
1403
+ type: "TSVoidKeyword";
1404
+ }
1405
+
1406
+ interface TSThisType extends BaseNode {
1407
+ type: "TSThisType";
1408
+ }
1409
+
1410
+ interface TSFunctionType extends BaseNode {
1411
+ type: "TSFunctionType";
1412
+ typeParameters: TSTypeParameterDeclaration | null;
1413
+ parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>;
1414
+ typeAnnotation: TSTypeAnnotation | null;
1415
+ }
1416
+
1417
+ interface TSConstructorType extends BaseNode {
1418
+ type: "TSConstructorType";
1419
+ typeParameters: TSTypeParameterDeclaration | null;
1420
+ parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>;
1421
+ typeAnnotation: TSTypeAnnotation | null;
1422
+ abstract: boolean | null;
1423
+ }
1424
+
1425
+ interface TSTypeReference extends BaseNode {
1426
+ type: "TSTypeReference";
1427
+ typeName: TSEntityName;
1428
+ typeParameters: TSTypeParameterInstantiation | null;
1429
+ }
1430
+
1431
+ interface TSTypePredicate extends BaseNode {
1432
+ type: "TSTypePredicate";
1433
+ parameterName: Identifier | TSThisType;
1434
+ typeAnnotation: TSTypeAnnotation | null;
1435
+ asserts: boolean | null;
1436
+ }
1437
+
1438
+ interface TSTypeQuery extends BaseNode {
1439
+ type: "TSTypeQuery";
1440
+ exprName: TSEntityName | TSImportType;
1441
+ typeParameters: TSTypeParameterInstantiation | null;
1442
+ }
1443
+
1444
+ interface TSTypeLiteral extends BaseNode {
1445
+ type: "TSTypeLiteral";
1446
+ members: Array<TSTypeElement>;
1447
+ }
1448
+
1449
+ interface TSArrayType extends BaseNode {
1450
+ type: "TSArrayType";
1451
+ elementType: TSType;
1452
+ }
1453
+
1454
+ interface TSTupleType extends BaseNode {
1455
+ type: "TSTupleType";
1456
+ elementTypes: Array<TSType | TSNamedTupleMember>;
1457
+ }
1458
+
1459
+ interface TSOptionalType extends BaseNode {
1460
+ type: "TSOptionalType";
1461
+ typeAnnotation: TSType;
1462
+ }
1463
+
1464
+ interface TSRestType extends BaseNode {
1465
+ type: "TSRestType";
1466
+ typeAnnotation: TSType;
1467
+ }
1468
+
1469
+ interface TSNamedTupleMember extends BaseNode {
1470
+ type: "TSNamedTupleMember";
1471
+ label: Identifier;
1472
+ elementType: TSType;
1473
+ optional: boolean;
1474
+ }
1475
+
1476
+ interface TSUnionType extends BaseNode {
1477
+ type: "TSUnionType";
1478
+ types: Array<TSType>;
1479
+ }
1480
+
1481
+ interface TSIntersectionType extends BaseNode {
1482
+ type: "TSIntersectionType";
1483
+ types: Array<TSType>;
1484
+ }
1485
+
1486
+ interface TSConditionalType extends BaseNode {
1487
+ type: "TSConditionalType";
1488
+ checkType: TSType;
1489
+ extendsType: TSType;
1490
+ trueType: TSType;
1491
+ falseType: TSType;
1492
+ }
1493
+
1494
+ interface TSInferType extends BaseNode {
1495
+ type: "TSInferType";
1496
+ typeParameter: TSTypeParameter;
1497
+ }
1498
+
1499
+ interface TSParenthesizedType extends BaseNode {
1500
+ type: "TSParenthesizedType";
1501
+ typeAnnotation: TSType;
1502
+ }
1503
+
1504
+ interface TSTypeOperator extends BaseNode {
1505
+ type: "TSTypeOperator";
1506
+ typeAnnotation: TSType;
1507
+ operator: string;
1508
+ }
1509
+
1510
+ interface TSIndexedAccessType extends BaseNode {
1511
+ type: "TSIndexedAccessType";
1512
+ objectType: TSType;
1513
+ indexType: TSType;
1514
+ }
1515
+
1516
+ interface TSMappedType extends BaseNode {
1517
+ type: "TSMappedType";
1518
+ typeParameter: TSTypeParameter;
1519
+ typeAnnotation: TSType | null;
1520
+ nameType: TSType | null;
1521
+ optional: true | false | "+" | "-" | null;
1522
+ readonly: true | false | "+" | "-" | null;
1523
+ }
1524
+
1525
+ interface TSTemplateLiteralType extends BaseNode {
1526
+ type: "TSTemplateLiteralType";
1527
+ quasis: Array<TemplateElement>;
1528
+ types: Array<TSType>;
1529
+ }
1530
+
1531
+ interface TSLiteralType extends BaseNode {
1532
+ type: "TSLiteralType";
1533
+ literal: NumericLiteral | StringLiteral | BooleanLiteral | BigIntLiteral | TemplateLiteral | UnaryExpression;
1534
+ }
1535
+
1536
+ interface TSExpressionWithTypeArguments extends BaseNode {
1537
+ type: "TSExpressionWithTypeArguments";
1538
+ expression: TSEntityName;
1539
+ typeParameters: TSTypeParameterInstantiation | null;
1540
+ }
1541
+
1542
+ interface TSInterfaceDeclaration extends BaseNode {
1543
+ type: "TSInterfaceDeclaration";
1544
+ id: Identifier;
1545
+ typeParameters: TSTypeParameterDeclaration | null;
1546
+ extends: Array<TSExpressionWithTypeArguments> | null;
1547
+ body: TSInterfaceBody;
1548
+ declare: boolean | null;
1549
+ }
1550
+
1551
+ interface TSInterfaceBody extends BaseNode {
1552
+ type: "TSInterfaceBody";
1553
+ body: Array<TSTypeElement>;
1554
+ }
1555
+
1556
+ interface TSTypeAliasDeclaration extends BaseNode {
1557
+ type: "TSTypeAliasDeclaration";
1558
+ id: Identifier;
1559
+ typeParameters: TSTypeParameterDeclaration | null;
1560
+ typeAnnotation: TSType;
1561
+ declare: boolean | null;
1562
+ }
1563
+
1564
+ interface TSInstantiationExpression extends BaseNode {
1565
+ type: "TSInstantiationExpression";
1566
+ expression: Expression;
1567
+ typeParameters: TSTypeParameterInstantiation | null;
1568
+ }
1569
+
1570
+ interface TSAsExpression extends BaseNode {
1571
+ type: "TSAsExpression";
1572
+ expression: Expression;
1573
+ typeAnnotation: TSType;
1574
+ }
1575
+
1576
+ interface TSSatisfiesExpression extends BaseNode {
1577
+ type: "TSSatisfiesExpression";
1578
+ expression: Expression;
1579
+ typeAnnotation: TSType;
1580
+ }
1581
+
1582
+ interface TSTypeAssertion extends BaseNode {
1583
+ type: "TSTypeAssertion";
1584
+ typeAnnotation: TSType;
1585
+ expression: Expression;
1586
+ }
1587
+
1588
+ interface TSEnumBody extends BaseNode {
1589
+ type: "TSEnumBody";
1590
+ members: Array<TSEnumMember>;
1591
+ }
1592
+
1593
+ interface TSEnumDeclaration extends BaseNode {
1594
+ type: "TSEnumDeclaration";
1595
+ id: Identifier;
1596
+ members: Array<TSEnumMember>;
1597
+ body: TSEnumBody | null;
1598
+ const: boolean | null;
1599
+ declare: boolean | null;
1600
+ initializer: Expression | null;
1601
+ }
1602
+
1603
+ interface TSEnumMember extends BaseNode {
1604
+ type: "TSEnumMember";
1605
+ id: Identifier | StringLiteral;
1606
+ initializer: Expression | null;
1607
+ }
1608
+
1609
+ interface TSModuleDeclaration extends BaseNode {
1610
+ type: "TSModuleDeclaration";
1611
+ id: Identifier | StringLiteral;
1612
+ body: TSModuleBlock | TSModuleDeclaration;
1613
+ declare: boolean | null;
1614
+ global: boolean | null;
1615
+ kind: "global" | "module" | "namespace";
1616
+ }
1617
+
1618
+ interface TSModuleBlock extends BaseNode {
1619
+ type: "TSModuleBlock";
1620
+ body: Array<Statement>;
1621
+ }
1622
+
1623
+ interface TSImportType extends BaseNode {
1624
+ type: "TSImportType";
1625
+ argument: StringLiteral;
1626
+ qualifier: TSEntityName | null;
1627
+ typeParameters: TSTypeParameterInstantiation | null;
1628
+ options: ObjectExpression | null;
1629
+ }
1630
+
1631
+ interface TSImportEqualsDeclaration extends BaseNode {
1632
+ type: "TSImportEqualsDeclaration";
1633
+ id: Identifier;
1634
+ moduleReference: TSEntityName | TSExternalModuleReference;
1635
+ importKind: "type" | "value" | null;
1636
+ isExport: boolean;
1637
+ }
1638
+
1639
+ interface TSExternalModuleReference extends BaseNode {
1640
+ type: "TSExternalModuleReference";
1641
+ expression: StringLiteral;
1642
+ }
1643
+
1644
+ interface TSNonNullExpression extends BaseNode {
1645
+ type: "TSNonNullExpression";
1646
+ expression: Expression;
1647
+ }
1648
+
1649
+ interface TSExportAssignment extends BaseNode {
1650
+ type: "TSExportAssignment";
1651
+ expression: Expression;
1652
+ }
1653
+
1654
+ interface TSNamespaceExportDeclaration extends BaseNode {
1655
+ type: "TSNamespaceExportDeclaration";
1656
+ id: Identifier;
1657
+ }
1658
+
1659
+ interface TSTypeAnnotation extends BaseNode {
1660
+ type: "TSTypeAnnotation";
1661
+ typeAnnotation: TSType;
1662
+ }
1663
+
1664
+ interface TSTypeParameterInstantiation extends BaseNode {
1665
+ type: "TSTypeParameterInstantiation";
1666
+ params: Array<TSType>;
1667
+ }
1668
+
1669
+ interface TSTypeParameterDeclaration extends BaseNode {
1670
+ type: "TSTypeParameterDeclaration";
1671
+ params: Array<TSTypeParameter>;
1672
+ }
1673
+
1674
+ interface TSTypeParameter extends BaseNode {
1675
+ type: "TSTypeParameter";
1676
+ constraint: TSType | null;
1677
+ default: TSType | null;
1678
+ name: string;
1679
+ const: boolean | null;
1680
+ in: boolean | null;
1681
+ out: boolean | null;
1682
+ }
1683
+
1684
+ /**
1685
+ * @deprecated Use `NumericLiteral`
1686
+ */
1687
+ type NumberLiteral = NumericLiteral;
1688
+
1689
+ /**
1690
+ * @deprecated Use `RegExpLiteral`
1691
+ */
1692
+ type RegexLiteral = RegExpLiteral;
1693
+
1694
+ /**
1695
+ * @deprecated Use `RestElement`
1696
+ */
1697
+ type RestProperty = RestElement;
1698
+
1699
+ /**
1700
+ * @deprecated Use `SpreadElement`
1701
+ */
1702
+ type SpreadProperty = SpreadElement;
1703
+
1704
+ type Standardized = ArrayExpression | AssignmentExpression | BinaryExpression | InterpreterDirective | Directive | DirectiveLiteral | BlockStatement | BreakStatement | CallExpression | CatchClause | ConditionalExpression | ContinueStatement | DebuggerStatement | DoWhileStatement | EmptyStatement | ExpressionStatement | File | ForInStatement | ForStatement | FunctionDeclaration | FunctionExpression | Identifier | IfStatement | LabeledStatement | StringLiteral | NumericLiteral | NullLiteral | BooleanLiteral | RegExpLiteral | LogicalExpression | MemberExpression | NewExpression | Program | ObjectExpression | ObjectMethod | ObjectProperty | RestElement | ReturnStatement | SequenceExpression | ParenthesizedExpression | SwitchCase | SwitchStatement | ThisExpression | ThrowStatement | TryStatement | UnaryExpression | UpdateExpression | VariableDeclaration | VariableDeclarator | WhileStatement | WithStatement | AssignmentPattern | ArrayPattern | ArrowFunctionExpression | ClassBody | ClassExpression | ClassDeclaration | ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration | ExportSpecifier | ForOfStatement | ImportDeclaration | ImportDefaultSpecifier | ImportNamespaceSpecifier | ImportSpecifier | ImportExpression | MetaProperty | ClassMethod | ObjectPattern | SpreadElement | Super | TaggedTemplateExpression | TemplateElement | TemplateLiteral | YieldExpression | AwaitExpression | Import | BigIntLiteral | ExportNamespaceSpecifier | OptionalMemberExpression | OptionalCallExpression | ClassProperty | ClassAccessorProperty | ClassPrivateProperty | ClassPrivateMethod | PrivateName | StaticBlock | ImportAttribute;
1705
+ type Expression = ArrayExpression | AssignmentExpression | BinaryExpression | CallExpression | ConditionalExpression | FunctionExpression | Identifier | StringLiteral | NumericLiteral | NullLiteral | BooleanLiteral | RegExpLiteral | LogicalExpression | MemberExpression | NewExpression | ObjectExpression | SequenceExpression | ParenthesizedExpression | ThisExpression | UnaryExpression | UpdateExpression | ArrowFunctionExpression | ClassExpression | ImportExpression | MetaProperty | Super | TaggedTemplateExpression | TemplateLiteral | YieldExpression | AwaitExpression | Import | BigIntLiteral | OptionalMemberExpression | OptionalCallExpression | TypeCastExpression | JSXElement | JSXFragment | BindExpression | DoExpression | RecordExpression | TupleExpression | DecimalLiteral | ModuleExpression | TopicReference | PipelineTopicExpression | PipelineBareFunction | PipelinePrimaryTopicReference | TSInstantiationExpression | TSAsExpression | TSSatisfiesExpression | TSTypeAssertion | TSNonNullExpression;
1706
+ type Binary = BinaryExpression | LogicalExpression;
1707
+ type Scopable = BlockStatement | CatchClause | DoWhileStatement | ForInStatement | ForStatement | FunctionDeclaration | FunctionExpression | Program | ObjectMethod | SwitchStatement | WhileStatement | ArrowFunctionExpression | ClassExpression | ClassDeclaration | ForOfStatement | ClassMethod | ClassPrivateMethod | StaticBlock | TSModuleBlock;
1708
+ type BlockParent = BlockStatement | CatchClause | DoWhileStatement | ForInStatement | ForStatement | FunctionDeclaration | FunctionExpression | Program | ObjectMethod | SwitchStatement | WhileStatement | ArrowFunctionExpression | ForOfStatement | ClassMethod | ClassPrivateMethod | StaticBlock | TSModuleBlock;
1709
+ type Block = BlockStatement | Program | TSModuleBlock;
1710
+ type Statement = BlockStatement | BreakStatement | ContinueStatement | DebuggerStatement | DoWhileStatement | EmptyStatement | ExpressionStatement | ForInStatement | ForStatement | FunctionDeclaration | IfStatement | LabeledStatement | ReturnStatement | SwitchStatement | ThrowStatement | TryStatement | VariableDeclaration | WhileStatement | WithStatement | ClassDeclaration | ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration | ForOfStatement | ImportDeclaration | DeclareClass | DeclareFunction | DeclareInterface | DeclareModule | DeclareModuleExports | DeclareTypeAlias | DeclareOpaqueType | DeclareVariable | DeclareExportDeclaration | DeclareExportAllDeclaration | InterfaceDeclaration | OpaqueType | TypeAlias | EnumDeclaration | TSDeclareFunction | TSInterfaceDeclaration | TSTypeAliasDeclaration | TSEnumDeclaration | TSModuleDeclaration | TSImportEqualsDeclaration | TSExportAssignment | TSNamespaceExportDeclaration;
1711
+ type Terminatorless = BreakStatement | ContinueStatement | ReturnStatement | ThrowStatement | YieldExpression | AwaitExpression;
1712
+ type CompletionStatement = BreakStatement | ContinueStatement | ReturnStatement | ThrowStatement;
1713
+ type Conditional = ConditionalExpression | IfStatement;
1714
+ type Loop = DoWhileStatement | ForInStatement | ForStatement | WhileStatement | ForOfStatement;
1715
+ type While = DoWhileStatement | WhileStatement;
1716
+ type ExpressionWrapper = ExpressionStatement | ParenthesizedExpression | TypeCastExpression;
1717
+ type For = ForInStatement | ForStatement | ForOfStatement;
1718
+ type ForXStatement = ForInStatement | ForOfStatement;
1719
+ type Function = FunctionDeclaration | FunctionExpression | ObjectMethod | ArrowFunctionExpression | ClassMethod | ClassPrivateMethod;
1720
+ type FunctionParent = FunctionDeclaration | FunctionExpression | ObjectMethod | ArrowFunctionExpression | ClassMethod | ClassPrivateMethod | StaticBlock | TSModuleBlock;
1721
+ type Pureish = FunctionDeclaration | FunctionExpression | StringLiteral | NumericLiteral | NullLiteral | BooleanLiteral | RegExpLiteral | ArrowFunctionExpression | BigIntLiteral | DecimalLiteral;
1722
+ type Declaration = FunctionDeclaration | VariableDeclaration | ClassDeclaration | ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration | ImportDeclaration | DeclareClass | DeclareFunction | DeclareInterface | DeclareModule | DeclareModuleExports | DeclareTypeAlias | DeclareOpaqueType | DeclareVariable | DeclareExportDeclaration | DeclareExportAllDeclaration | InterfaceDeclaration | OpaqueType | TypeAlias | EnumDeclaration | TSDeclareFunction | TSInterfaceDeclaration | TSTypeAliasDeclaration | TSEnumDeclaration | TSModuleDeclaration | TSImportEqualsDeclaration;
1723
+ type PatternLike = Identifier | RestElement | AssignmentPattern | ArrayPattern | ObjectPattern | TSAsExpression | TSSatisfiesExpression | TSTypeAssertion | TSNonNullExpression;
1724
+ type LVal = Identifier | MemberExpression | RestElement | AssignmentPattern | ArrayPattern | ObjectPattern | TSParameterProperty | TSAsExpression | TSSatisfiesExpression | TSTypeAssertion | TSNonNullExpression;
1725
+ type TSEntityName = Identifier | TSQualifiedName;
1726
+ type Literal = StringLiteral | NumericLiteral | NullLiteral | BooleanLiteral | RegExpLiteral | TemplateLiteral | BigIntLiteral | DecimalLiteral;
1727
+ type Immutable = StringLiteral | NumericLiteral | NullLiteral | BooleanLiteral | BigIntLiteral | JSXAttribute | JSXClosingElement | JSXElement | JSXExpressionContainer | JSXSpreadChild | JSXOpeningElement | JSXText | JSXFragment | JSXOpeningFragment | JSXClosingFragment | DecimalLiteral;
1728
+ type UserWhitespacable = ObjectMethod | ObjectProperty | ObjectTypeInternalSlot | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeProperty | ObjectTypeSpreadProperty;
1729
+ type Method = ObjectMethod | ClassMethod | ClassPrivateMethod;
1730
+ type ObjectMember = ObjectMethod | ObjectProperty;
1731
+ type Property = ObjectProperty | ClassProperty | ClassAccessorProperty | ClassPrivateProperty;
1732
+ type UnaryLike = UnaryExpression | SpreadElement;
1733
+ type Pattern = AssignmentPattern | ArrayPattern | ObjectPattern;
1734
+ type Class = ClassExpression | ClassDeclaration;
1735
+ type ImportOrExportDeclaration = ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration | ImportDeclaration;
1736
+ type ExportDeclaration = ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration;
1737
+ type ModuleSpecifier = ExportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier | ImportSpecifier | ExportNamespaceSpecifier | ExportDefaultSpecifier;
1738
+ type Accessor = ClassAccessorProperty;
1739
+ type Private = ClassPrivateProperty | ClassPrivateMethod | PrivateName;
1740
+ type Flow = AnyTypeAnnotation | ArrayTypeAnnotation | BooleanTypeAnnotation | BooleanLiteralTypeAnnotation | NullLiteralTypeAnnotation | ClassImplements | DeclareClass | DeclareFunction | DeclareInterface | DeclareModule | DeclareModuleExports | DeclareTypeAlias | DeclareOpaqueType | DeclareVariable | DeclareExportDeclaration | DeclareExportAllDeclaration | DeclaredPredicate | ExistsTypeAnnotation | FunctionTypeAnnotation | FunctionTypeParam | GenericTypeAnnotation | InferredPredicate | InterfaceExtends | InterfaceDeclaration | InterfaceTypeAnnotation | IntersectionTypeAnnotation | MixedTypeAnnotation | EmptyTypeAnnotation | NullableTypeAnnotation | NumberLiteralTypeAnnotation | NumberTypeAnnotation | ObjectTypeAnnotation | ObjectTypeInternalSlot | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | QualifiedTypeIdentifier | StringLiteralTypeAnnotation | StringTypeAnnotation | SymbolTypeAnnotation | ThisTypeAnnotation | TupleTypeAnnotation | TypeofTypeAnnotation | TypeAlias | TypeAnnotation | TypeCastExpression | TypeParameter | TypeParameterDeclaration | TypeParameterInstantiation | UnionTypeAnnotation | Variance | VoidTypeAnnotation | EnumDeclaration | EnumBooleanBody | EnumNumberBody | EnumStringBody | EnumSymbolBody | EnumBooleanMember | EnumNumberMember | EnumStringMember | EnumDefaultedMember | IndexedAccessType | OptionalIndexedAccessType;
1741
+ type FlowType = AnyTypeAnnotation | ArrayTypeAnnotation | BooleanTypeAnnotation | BooleanLiteralTypeAnnotation | NullLiteralTypeAnnotation | ExistsTypeAnnotation | FunctionTypeAnnotation | GenericTypeAnnotation | InterfaceTypeAnnotation | IntersectionTypeAnnotation | MixedTypeAnnotation | EmptyTypeAnnotation | NullableTypeAnnotation | NumberLiteralTypeAnnotation | NumberTypeAnnotation | ObjectTypeAnnotation | StringLiteralTypeAnnotation | StringTypeAnnotation | SymbolTypeAnnotation | ThisTypeAnnotation | TupleTypeAnnotation | TypeofTypeAnnotation | UnionTypeAnnotation | VoidTypeAnnotation | IndexedAccessType | OptionalIndexedAccessType;
1742
+ type FlowBaseAnnotation = AnyTypeAnnotation | BooleanTypeAnnotation | NullLiteralTypeAnnotation | MixedTypeAnnotation | EmptyTypeAnnotation | NumberTypeAnnotation | StringTypeAnnotation | SymbolTypeAnnotation | ThisTypeAnnotation | VoidTypeAnnotation;
1743
+ type FlowDeclaration = DeclareClass | DeclareFunction | DeclareInterface | DeclareModule | DeclareModuleExports | DeclareTypeAlias | DeclareOpaqueType | DeclareVariable | DeclareExportDeclaration | DeclareExportAllDeclaration | InterfaceDeclaration | OpaqueType | TypeAlias;
1744
+ type FlowPredicate = DeclaredPredicate | InferredPredicate;
1745
+ type EnumBody = EnumBooleanBody | EnumNumberBody | EnumStringBody | EnumSymbolBody;
1746
+ type EnumMember = EnumBooleanMember | EnumNumberMember | EnumStringMember | EnumDefaultedMember;
1747
+ type JSX = JSXAttribute | JSXClosingElement | JSXElement | JSXEmptyExpression | JSXExpressionContainer | JSXSpreadChild | JSXIdentifier | JSXMemberExpression | JSXNamespacedName | JSXOpeningElement | JSXSpreadAttribute | JSXText | JSXFragment | JSXOpeningFragment | JSXClosingFragment;
1748
+ type Miscellaneous = Noop | Placeholder | V8IntrinsicIdentifier;
1749
+ type TypeScript = TSParameterProperty | TSDeclareFunction | TSDeclareMethod | TSQualifiedName | TSCallSignatureDeclaration | TSConstructSignatureDeclaration | TSPropertySignature | TSMethodSignature | TSIndexSignature | TSAnyKeyword | TSBooleanKeyword | TSBigIntKeyword | TSIntrinsicKeyword | TSNeverKeyword | TSNullKeyword | TSNumberKeyword | TSObjectKeyword | TSStringKeyword | TSSymbolKeyword | TSUndefinedKeyword | TSUnknownKeyword | TSVoidKeyword | TSThisType | TSFunctionType | TSConstructorType | TSTypeReference | TSTypePredicate | TSTypeQuery | TSTypeLiteral | TSArrayType | TSTupleType | TSOptionalType | TSRestType | TSNamedTupleMember | TSUnionType | TSIntersectionType | TSConditionalType | TSInferType | TSParenthesizedType | TSTypeOperator | TSIndexedAccessType | TSMappedType | TSTemplateLiteralType | TSLiteralType | TSExpressionWithTypeArguments | TSInterfaceDeclaration | TSInterfaceBody | TSTypeAliasDeclaration | TSInstantiationExpression | TSAsExpression | TSSatisfiesExpression | TSTypeAssertion | TSEnumBody | TSEnumDeclaration | TSEnumMember | TSModuleDeclaration | TSModuleBlock | TSImportType | TSImportEqualsDeclaration | TSExternalModuleReference | TSNonNullExpression | TSExportAssignment | TSNamespaceExportDeclaration | TSTypeAnnotation | TSTypeParameterInstantiation | TSTypeParameterDeclaration | TSTypeParameter;
1750
+ type TSTypeElement = TSCallSignatureDeclaration | TSConstructSignatureDeclaration | TSPropertySignature | TSMethodSignature | TSIndexSignature;
1751
+ type TSType = TSAnyKeyword | TSBooleanKeyword | TSBigIntKeyword | TSIntrinsicKeyword | TSNeverKeyword | TSNullKeyword | TSNumberKeyword | TSObjectKeyword | TSStringKeyword | TSSymbolKeyword | TSUndefinedKeyword | TSUnknownKeyword | TSVoidKeyword | TSThisType | TSFunctionType | TSConstructorType | TSTypeReference | TSTypePredicate | TSTypeQuery | TSTypeLiteral | TSArrayType | TSTupleType | TSOptionalType | TSRestType | TSUnionType | TSIntersectionType | TSConditionalType | TSInferType | TSParenthesizedType | TSTypeOperator | TSIndexedAccessType | TSMappedType | TSTemplateLiteralType | TSLiteralType | TSExpressionWithTypeArguments | TSImportType;
1752
+ type TSBaseType = TSAnyKeyword | TSBooleanKeyword | TSBigIntKeyword | TSIntrinsicKeyword | TSNeverKeyword | TSNullKeyword | TSNumberKeyword | TSObjectKeyword | TSStringKeyword | TSSymbolKeyword | TSUndefinedKeyword | TSUnknownKeyword | TSVoidKeyword | TSThisType | TSTemplateLiteralType | TSLiteralType;
1753
+ type ModuleDeclaration = ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration | ImportDeclaration;
1754
+
1755
+ interface Aliases {
1756
+ Standardized: Standardized;
1757
+ Expression: Expression;
1758
+ Binary: Binary;
1759
+ Scopable: Scopable;
1760
+ BlockParent: BlockParent;
1761
+ Block: Block;
1762
+ Statement: Statement;
1763
+ Terminatorless: Terminatorless;
1764
+ CompletionStatement: CompletionStatement;
1765
+ Conditional: Conditional;
1766
+ Loop: Loop;
1767
+ While: While;
1768
+ ExpressionWrapper: ExpressionWrapper;
1769
+ For: For;
1770
+ ForXStatement: ForXStatement;
1771
+ Function: Function;
1772
+ FunctionParent: FunctionParent;
1773
+ Pureish: Pureish;
1774
+ Declaration: Declaration;
1775
+ PatternLike: PatternLike;
1776
+ LVal: LVal;
1777
+ TSEntityName: TSEntityName;
1778
+ Literal: Literal;
1779
+ Immutable: Immutable;
1780
+ UserWhitespacable: UserWhitespacable;
1781
+ Method: Method;
1782
+ ObjectMember: ObjectMember;
1783
+ Property: Property;
1784
+ UnaryLike: UnaryLike;
1785
+ Pattern: Pattern;
1786
+ Class: Class;
1787
+ ImportOrExportDeclaration: ImportOrExportDeclaration;
1788
+ ExportDeclaration: ExportDeclaration;
1789
+ ModuleSpecifier: ModuleSpecifier;
1790
+ Accessor: Accessor;
1791
+ Private: Private;
1792
+ Flow: Flow;
1793
+ FlowType: FlowType;
1794
+ FlowBaseAnnotation: FlowBaseAnnotation;
1795
+ FlowDeclaration: FlowDeclaration;
1796
+ FlowPredicate: FlowPredicate;
1797
+ EnumBody: EnumBody;
1798
+ EnumMember: EnumMember;
1799
+ JSX: JSX;
1800
+ Miscellaneous: Miscellaneous;
1801
+ TypeScript: TypeScript;
1802
+ TSTypeElement: TSTypeElement;
1803
+ TSType: TSType;
1804
+ TSBaseType: TSBaseType;
1805
+ ModuleDeclaration: ModuleDeclaration;
1806
+ }
1807
+
1808
+ declare function arrayExpression(elements?: Array<null | Expression | SpreadElement>): ArrayExpression;
1809
+ declare function assignmentExpression(operator: string, left: LVal | OptionalMemberExpression, right: Expression): AssignmentExpression;
1810
+ declare function binaryExpression(operator: "+" | "-" | "/" | "%" | "*" | "**" | "&" | "|" | ">>" | ">>>" | "<<" | "^" | "==" | "===" | "!=" | "!==" | "in" | "instanceof" | ">" | "<" | ">=" | "<=" | "|>", left: Expression | PrivateName, right: Expression): BinaryExpression;
1811
+ declare function interpreterDirective(value: string): InterpreterDirective;
1812
+ declare function directive(value: DirectiveLiteral): Directive;
1813
+ declare function directiveLiteral(value: string): DirectiveLiteral;
1814
+ declare function blockStatement(body: Array<Statement>, directives?: Array<Directive>): BlockStatement;
1815
+ declare function breakStatement(label?: Identifier | null): BreakStatement;
1816
+ declare function callExpression(callee: Expression | Super | V8IntrinsicIdentifier, _arguments: Array<Expression | SpreadElement | ArgumentPlaceholder>): CallExpression;
1817
+ declare function catchClause(param: Identifier | ArrayPattern | ObjectPattern | null | undefined, body: BlockStatement): CatchClause;
1818
+ declare function conditionalExpression(test: Expression, consequent: Expression, alternate: Expression): ConditionalExpression;
1819
+ declare function continueStatement(label?: Identifier | null): ContinueStatement;
1820
+ declare function debuggerStatement(): DebuggerStatement;
1821
+ declare function doWhileStatement(test: Expression, body: Statement): DoWhileStatement;
1822
+ declare function emptyStatement(): EmptyStatement;
1823
+ declare function expressionStatement(expression: Expression): ExpressionStatement;
1824
+ declare function file(program: Program, comments?: Array<CommentBlock | CommentLine> | null, tokens?: Array<any> | null): File;
1825
+ declare function forInStatement(left: VariableDeclaration | LVal, right: Expression, body: Statement): ForInStatement;
1826
+ declare function forStatement(init: VariableDeclaration | Expression | null | undefined, test: Expression | null | undefined, update: Expression | null | undefined, body: Statement): ForStatement;
1827
+ declare function functionDeclaration(id: Identifier | null | undefined, params: Array<Identifier | Pattern | RestElement>, body: BlockStatement, generator?: boolean, async?: boolean): FunctionDeclaration;
1828
+ declare function functionExpression(id: Identifier | null | undefined, params: Array<Identifier | Pattern | RestElement>, body: BlockStatement, generator?: boolean, async?: boolean): FunctionExpression;
1829
+ declare function identifier(name: string): Identifier;
1830
+ declare function ifStatement(test: Expression, consequent: Statement, alternate?: Statement | null): IfStatement;
1831
+ declare function labeledStatement(label: Identifier, body: Statement): LabeledStatement;
1832
+ declare function stringLiteral(value: string): StringLiteral;
1833
+ declare function numericLiteral(value: number): NumericLiteral;
1834
+ declare function nullLiteral(): NullLiteral;
1835
+ declare function booleanLiteral(value: boolean): BooleanLiteral;
1836
+ declare function regExpLiteral(pattern: string, flags?: string): RegExpLiteral;
1837
+ declare function logicalExpression(operator: "||" | "&&" | "??", left: Expression, right: Expression): LogicalExpression;
1838
+ declare function memberExpression(object: Expression | Super, property: Expression | Identifier | PrivateName, computed?: boolean, optional?: boolean | null): MemberExpression;
1839
+ declare function newExpression(callee: Expression | Super | V8IntrinsicIdentifier, _arguments: Array<Expression | SpreadElement | ArgumentPlaceholder>): NewExpression;
1840
+ declare function program(body: Array<Statement>, directives?: Array<Directive>, sourceType?: "script" | "module", interpreter?: InterpreterDirective | null): Program;
1841
+ declare function objectExpression(properties: Array<ObjectMethod | ObjectProperty | SpreadElement>): ObjectExpression;
1842
+ declare function objectMethod(kind: "method" | "get" | "set" | undefined, key: Expression | Identifier | StringLiteral | NumericLiteral | BigIntLiteral, params: Array<Identifier | Pattern | RestElement>, body: BlockStatement, computed?: boolean, generator?: boolean, async?: boolean): ObjectMethod;
1843
+ declare function objectProperty(key: Expression | Identifier | StringLiteral | NumericLiteral | BigIntLiteral | DecimalLiteral | PrivateName, value: Expression | PatternLike, computed?: boolean, shorthand?: boolean, decorators?: Array<Decorator> | null): ObjectProperty;
1844
+ declare function restElement(argument: LVal): RestElement;
1845
+ declare function returnStatement(argument?: Expression | null): ReturnStatement;
1846
+ declare function sequenceExpression(expressions: Array<Expression>): SequenceExpression;
1847
+ declare function parenthesizedExpression(expression: Expression): ParenthesizedExpression;
1848
+ declare function switchCase(test: Expression | null | undefined, consequent: Array<Statement>): SwitchCase;
1849
+ declare function switchStatement(discriminant: Expression, cases: Array<SwitchCase>): SwitchStatement;
1850
+ declare function thisExpression(): ThisExpression;
1851
+ declare function throwStatement(argument: Expression): ThrowStatement;
1852
+ declare function tryStatement(block: BlockStatement, handler?: CatchClause | null, finalizer?: BlockStatement | null): TryStatement;
1853
+ declare function unaryExpression(operator: "void" | "throw" | "delete" | "!" | "+" | "-" | "~" | "typeof", argument: Expression, prefix?: boolean): UnaryExpression;
1854
+ declare function updateExpression(operator: "++" | "--", argument: Expression, prefix?: boolean): UpdateExpression;
1855
+ declare function variableDeclaration(kind: "var" | "let" | "const" | "using" | "await using", declarations: Array<VariableDeclarator>): VariableDeclaration;
1856
+ declare function variableDeclarator(id: LVal, init?: Expression | null): VariableDeclarator;
1857
+ declare function whileStatement(test: Expression, body: Statement): WhileStatement;
1858
+ declare function withStatement(object: Expression, body: Statement): WithStatement;
1859
+ declare function assignmentPattern(left: Identifier | ObjectPattern | ArrayPattern | MemberExpression | TSAsExpression | TSSatisfiesExpression | TSTypeAssertion | TSNonNullExpression, right: Expression): AssignmentPattern;
1860
+ declare function arrayPattern(elements: Array<null | PatternLike | LVal>): ArrayPattern;
1861
+ declare function arrowFunctionExpression(params: Array<Identifier | Pattern | RestElement>, body: BlockStatement | Expression, async?: boolean): ArrowFunctionExpression;
1862
+ declare function classBody(body: Array<ClassMethod | ClassPrivateMethod | ClassProperty | ClassPrivateProperty | ClassAccessorProperty | TSDeclareMethod | TSIndexSignature | StaticBlock>): ClassBody;
1863
+ declare function classExpression(id: Identifier | null | undefined, superClass: Expression | null | undefined, body: ClassBody, decorators?: Array<Decorator> | null): ClassExpression;
1864
+ declare function classDeclaration(id: Identifier | null | undefined, superClass: Expression | null | undefined, body: ClassBody, decorators?: Array<Decorator> | null): ClassDeclaration;
1865
+ declare function exportAllDeclaration(source: StringLiteral): ExportAllDeclaration;
1866
+ declare function exportDefaultDeclaration(declaration: TSDeclareFunction | FunctionDeclaration | ClassDeclaration | Expression): ExportDefaultDeclaration;
1867
+ declare function exportNamedDeclaration(declaration?: Declaration | null, specifiers?: Array<ExportSpecifier | ExportDefaultSpecifier | ExportNamespaceSpecifier>, source?: StringLiteral | null): ExportNamedDeclaration;
1868
+ declare function exportSpecifier(local: Identifier, exported: Identifier | StringLiteral): ExportSpecifier;
1869
+ declare function forOfStatement(left: VariableDeclaration | LVal, right: Expression, body: Statement, _await?: boolean): ForOfStatement;
1870
+ declare function importDeclaration(specifiers: Array<ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier>, source: StringLiteral): ImportDeclaration;
1871
+ declare function importDefaultSpecifier(local: Identifier): ImportDefaultSpecifier;
1872
+ declare function importNamespaceSpecifier(local: Identifier): ImportNamespaceSpecifier;
1873
+ declare function importSpecifier(local: Identifier, imported: Identifier | StringLiteral): ImportSpecifier;
1874
+ declare function importExpression(source: Expression, options?: Expression | null): ImportExpression;
1875
+ declare function metaProperty(meta: Identifier, property: Identifier): MetaProperty;
1876
+ declare function classMethod(kind: "get" | "set" | "method" | "constructor" | undefined, key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression, params: Array<Identifier | Pattern | RestElement | TSParameterProperty>, body: BlockStatement, computed?: boolean, _static?: boolean, generator?: boolean, async?: boolean): ClassMethod;
1877
+ declare function objectPattern(properties: Array<RestElement | ObjectProperty>): ObjectPattern;
1878
+ declare function spreadElement(argument: Expression): SpreadElement;
1879
+ declare function _super(): Super;
1880
+
1881
+ declare function taggedTemplateExpression(tag: Expression, quasi: TemplateLiteral): TaggedTemplateExpression;
1882
+ declare function templateElement(value: { raw: string, cooked?: string }, tail?: boolean): TemplateElement;
1883
+ declare function templateLiteral(quasis: Array<TemplateElement>, expressions: Array<Expression | TSType>): TemplateLiteral;
1884
+ declare function yieldExpression(argument?: Expression | null, delegate?: boolean): YieldExpression;
1885
+ declare function awaitExpression(argument: Expression): AwaitExpression;
1886
+ declare function _import(): Import;
1887
+
1888
+ declare function bigIntLiteral(value: string): BigIntLiteral;
1889
+ declare function exportNamespaceSpecifier(exported: Identifier): ExportNamespaceSpecifier;
1890
+ declare function optionalMemberExpression(object: Expression, property: Expression | Identifier, computed: boolean | undefined, optional: boolean): OptionalMemberExpression;
1891
+ declare function optionalCallExpression(callee: Expression, _arguments: Array<Expression | SpreadElement | ArgumentPlaceholder>, optional: boolean): OptionalCallExpression;
1892
+ declare function classProperty(key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression, value?: Expression | null, typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null, decorators?: Array<Decorator> | null, computed?: boolean, _static?: boolean): ClassProperty;
1893
+ declare function classAccessorProperty(key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression | PrivateName, value?: Expression | null, typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null, decorators?: Array<Decorator> | null, computed?: boolean, _static?: boolean): ClassAccessorProperty;
1894
+ declare function classPrivateProperty(key: PrivateName, value?: Expression | null, decorators?: Array<Decorator> | null, _static?: boolean): ClassPrivateProperty;
1895
+ declare function classPrivateMethod(kind: "get" | "set" | "method" | undefined, key: PrivateName, params: Array<Identifier | Pattern | RestElement | TSParameterProperty>, body: BlockStatement, _static?: boolean): ClassPrivateMethod;
1896
+ declare function privateName(id: Identifier): PrivateName;
1897
+ declare function staticBlock(body: Array<Statement>): StaticBlock;
1898
+ declare function importAttribute(key: Identifier | StringLiteral, value: StringLiteral): ImportAttribute;
1899
+ declare function anyTypeAnnotation(): AnyTypeAnnotation;
1900
+ declare function arrayTypeAnnotation(elementType: FlowType): ArrayTypeAnnotation;
1901
+ declare function booleanTypeAnnotation(): BooleanTypeAnnotation;
1902
+ declare function booleanLiteralTypeAnnotation(value: boolean): BooleanLiteralTypeAnnotation;
1903
+ declare function nullLiteralTypeAnnotation(): NullLiteralTypeAnnotation;
1904
+ declare function classImplements(id: Identifier, typeParameters?: TypeParameterInstantiation | null): ClassImplements;
1905
+ declare function declareClass(id: Identifier, typeParameters: TypeParameterDeclaration | null | undefined, _extends: Array<InterfaceExtends> | null | undefined, body: ObjectTypeAnnotation): DeclareClass;
1906
+ declare function declareFunction(id: Identifier): DeclareFunction;
1907
+ declare function declareInterface(id: Identifier, typeParameters: TypeParameterDeclaration | null | undefined, _extends: Array<InterfaceExtends> | null | undefined, body: ObjectTypeAnnotation): DeclareInterface;
1908
+ declare function declareModule(id: Identifier | StringLiteral, body: BlockStatement, kind?: "CommonJS" | "ES" | null): DeclareModule;
1909
+ declare function declareModuleExports(typeAnnotation: TypeAnnotation): DeclareModuleExports;
1910
+ declare function declareTypeAlias(id: Identifier, typeParameters: TypeParameterDeclaration | null | undefined, right: FlowType): DeclareTypeAlias;
1911
+ declare function declareOpaqueType(id: Identifier, typeParameters?: TypeParameterDeclaration | null, supertype?: FlowType | null): DeclareOpaqueType;
1912
+ declare function declareVariable(id: Identifier): DeclareVariable;
1913
+ declare function declareExportDeclaration(declaration?: Flow | null, specifiers?: Array<ExportSpecifier | ExportNamespaceSpecifier> | null, source?: StringLiteral | null, attributes?: Array<ImportAttribute> | null): DeclareExportDeclaration;
1914
+ declare function declareExportAllDeclaration(source: StringLiteral, attributes?: Array<ImportAttribute> | null): DeclareExportAllDeclaration;
1915
+ declare function declaredPredicate(value: Flow): DeclaredPredicate;
1916
+ declare function existsTypeAnnotation(): ExistsTypeAnnotation;
1917
+ declare function functionTypeAnnotation(typeParameters: TypeParameterDeclaration | null | undefined, params: Array<FunctionTypeParam>, rest: FunctionTypeParam | null | undefined, returnType: FlowType): FunctionTypeAnnotation;
1918
+ declare function functionTypeParam(name: Identifier | null | undefined, typeAnnotation: FlowType): FunctionTypeParam;
1919
+ declare function genericTypeAnnotation(id: Identifier | QualifiedTypeIdentifier, typeParameters?: TypeParameterInstantiation | null): GenericTypeAnnotation;
1920
+ declare function inferredPredicate(): InferredPredicate;
1921
+ declare function interfaceExtends(id: Identifier | QualifiedTypeIdentifier, typeParameters?: TypeParameterInstantiation | null): InterfaceExtends;
1922
+ declare function interfaceDeclaration(id: Identifier, typeParameters: TypeParameterDeclaration | null | undefined, _extends: Array<InterfaceExtends> | null | undefined, body: ObjectTypeAnnotation): InterfaceDeclaration;
1923
+ declare function interfaceTypeAnnotation(_extends: Array<InterfaceExtends> | null | undefined, body: ObjectTypeAnnotation): InterfaceTypeAnnotation;
1924
+ declare function intersectionTypeAnnotation(types: Array<FlowType>): IntersectionTypeAnnotation;
1925
+ declare function mixedTypeAnnotation(): MixedTypeAnnotation;
1926
+ declare function emptyTypeAnnotation(): EmptyTypeAnnotation;
1927
+ declare function nullableTypeAnnotation(typeAnnotation: FlowType): NullableTypeAnnotation;
1928
+ declare function numberLiteralTypeAnnotation(value: number): NumberLiteralTypeAnnotation;
1929
+ declare function numberTypeAnnotation(): NumberTypeAnnotation;
1930
+ declare function objectTypeAnnotation(properties: Array<ObjectTypeProperty | ObjectTypeSpreadProperty>, indexers?: Array<ObjectTypeIndexer>, callProperties?: Array<ObjectTypeCallProperty>, internalSlots?: Array<ObjectTypeInternalSlot>, exact?: boolean): ObjectTypeAnnotation;
1931
+ declare function objectTypeInternalSlot(id: Identifier, value: FlowType, optional: boolean, _static: boolean, method: boolean): ObjectTypeInternalSlot;
1932
+ declare function objectTypeCallProperty(value: FlowType): ObjectTypeCallProperty;
1933
+ declare function objectTypeIndexer(id: Identifier | null | undefined, key: FlowType, value: FlowType, variance?: Variance | null): ObjectTypeIndexer;
1934
+ declare function objectTypeProperty(key: Identifier | StringLiteral, value: FlowType, variance?: Variance | null): ObjectTypeProperty;
1935
+ declare function objectTypeSpreadProperty(argument: FlowType): ObjectTypeSpreadProperty;
1936
+ declare function opaqueType(id: Identifier, typeParameters: TypeParameterDeclaration | null | undefined, supertype: FlowType | null | undefined, impltype: FlowType): OpaqueType;
1937
+ declare function qualifiedTypeIdentifier(id: Identifier, qualification: Identifier | QualifiedTypeIdentifier): QualifiedTypeIdentifier;
1938
+ declare function stringLiteralTypeAnnotation(value: string): StringLiteralTypeAnnotation;
1939
+ declare function stringTypeAnnotation(): StringTypeAnnotation;
1940
+ declare function symbolTypeAnnotation(): SymbolTypeAnnotation;
1941
+ declare function thisTypeAnnotation(): ThisTypeAnnotation;
1942
+ declare function tupleTypeAnnotation(types: Array<FlowType>): TupleTypeAnnotation;
1943
+ declare function typeofTypeAnnotation(argument: FlowType): TypeofTypeAnnotation;
1944
+ declare function typeAlias(id: Identifier, typeParameters: TypeParameterDeclaration | null | undefined, right: FlowType): TypeAlias;
1945
+ declare function typeAnnotation(typeAnnotation: FlowType): TypeAnnotation;
1946
+ declare function typeCastExpression(expression: Expression, typeAnnotation: TypeAnnotation): TypeCastExpression;
1947
+ declare function typeParameter(bound?: TypeAnnotation | null, _default?: FlowType | null, variance?: Variance | null): TypeParameter;
1948
+ declare function typeParameterDeclaration(params: Array<TypeParameter>): TypeParameterDeclaration;
1949
+ declare function typeParameterInstantiation(params: Array<FlowType>): TypeParameterInstantiation;
1950
+ declare function unionTypeAnnotation(types: Array<FlowType>): UnionTypeAnnotation;
1951
+ declare function variance(kind: "minus" | "plus"): Variance;
1952
+ declare function voidTypeAnnotation(): VoidTypeAnnotation;
1953
+ declare function enumDeclaration(id: Identifier, body: EnumBooleanBody | EnumNumberBody | EnumStringBody | EnumSymbolBody): EnumDeclaration;
1954
+ declare function enumBooleanBody(members: Array<EnumBooleanMember>): EnumBooleanBody;
1955
+ declare function enumNumberBody(members: Array<EnumNumberMember>): EnumNumberBody;
1956
+ declare function enumStringBody(members: Array<EnumStringMember | EnumDefaultedMember>): EnumStringBody;
1957
+ declare function enumSymbolBody(members: Array<EnumDefaultedMember>): EnumSymbolBody;
1958
+ declare function enumBooleanMember(id: Identifier): EnumBooleanMember;
1959
+ declare function enumNumberMember(id: Identifier, init: NumericLiteral): EnumNumberMember;
1960
+ declare function enumStringMember(id: Identifier, init: StringLiteral): EnumStringMember;
1961
+ declare function enumDefaultedMember(id: Identifier): EnumDefaultedMember;
1962
+ declare function indexedAccessType(objectType: FlowType, indexType: FlowType): IndexedAccessType;
1963
+ declare function optionalIndexedAccessType(objectType: FlowType, indexType: FlowType): OptionalIndexedAccessType;
1964
+ declare function jsxAttribute(name: JSXIdentifier | JSXNamespacedName, value?: JSXElement | JSXFragment | StringLiteral | JSXExpressionContainer | null): JSXAttribute;
1965
+ declare function jsxClosingElement(name: JSXIdentifier | JSXMemberExpression | JSXNamespacedName): JSXClosingElement;
1966
+ declare function jsxElement(openingElement: JSXOpeningElement, closingElement: JSXClosingElement | null | undefined, children: Array<JSXText | JSXExpressionContainer | JSXSpreadChild | JSXElement | JSXFragment>, selfClosing?: boolean | null): JSXElement;
1967
+ declare function jsxEmptyExpression(): JSXEmptyExpression;
1968
+ declare function jsxExpressionContainer(expression: Expression | JSXEmptyExpression): JSXExpressionContainer;
1969
+ declare function jsxSpreadChild(expression: Expression): JSXSpreadChild;
1970
+ declare function jsxIdentifier(name: string): JSXIdentifier;
1971
+ declare function jsxMemberExpression(object: JSXMemberExpression | JSXIdentifier, property: JSXIdentifier): JSXMemberExpression;
1972
+ declare function jsxNamespacedName(namespace: JSXIdentifier, name: JSXIdentifier): JSXNamespacedName;
1973
+ declare function jsxOpeningElement(name: JSXIdentifier | JSXMemberExpression | JSXNamespacedName, attributes: Array<JSXAttribute | JSXSpreadAttribute>, selfClosing?: boolean): JSXOpeningElement;
1974
+ declare function jsxSpreadAttribute(argument: Expression): JSXSpreadAttribute;
1975
+ declare function jsxText(value: string): JSXText;
1976
+ declare function jsxFragment(openingFragment: JSXOpeningFragment, closingFragment: JSXClosingFragment, children: Array<JSXText | JSXExpressionContainer | JSXSpreadChild | JSXElement | JSXFragment>): JSXFragment;
1977
+ declare function jsxOpeningFragment(): JSXOpeningFragment;
1978
+ declare function jsxClosingFragment(): JSXClosingFragment;
1979
+ declare function noop(): Noop;
1980
+ declare function placeholder(expectedNode: "Identifier" | "StringLiteral" | "Expression" | "Statement" | "Declaration" | "BlockStatement" | "ClassBody" | "Pattern", name: Identifier): Placeholder;
1981
+ declare function v8IntrinsicIdentifier(name: string): V8IntrinsicIdentifier;
1982
+ declare function argumentPlaceholder(): ArgumentPlaceholder;
1983
+ declare function bindExpression(object: Expression, callee: Expression): BindExpression;
1984
+ declare function decorator(expression: Expression): Decorator;
1985
+ declare function doExpression(body: BlockStatement, async?: boolean): DoExpression;
1986
+ declare function exportDefaultSpecifier(exported: Identifier): ExportDefaultSpecifier;
1987
+ declare function recordExpression(properties: Array<ObjectProperty | SpreadElement>): RecordExpression;
1988
+ declare function tupleExpression(elements?: Array<Expression | SpreadElement>): TupleExpression;
1989
+ declare function decimalLiteral(value: string): DecimalLiteral;
1990
+ declare function moduleExpression(body: Program): ModuleExpression;
1991
+ declare function topicReference(): TopicReference;
1992
+ declare function pipelineTopicExpression(expression: Expression): PipelineTopicExpression;
1993
+ declare function pipelineBareFunction(callee: Expression): PipelineBareFunction;
1994
+ declare function pipelinePrimaryTopicReference(): PipelinePrimaryTopicReference;
1995
+ declare function tsParameterProperty(parameter: Identifier | AssignmentPattern): TSParameterProperty;
1996
+ declare function tsDeclareFunction(id: Identifier | null | undefined, typeParameters: TSTypeParameterDeclaration | Noop | null | undefined, params: Array<Identifier | Pattern | RestElement>, returnType?: TSTypeAnnotation | Noop | null): TSDeclareFunction;
1997
+ declare function tsDeclareMethod(decorators: Array<Decorator> | null | undefined, key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression, typeParameters: TSTypeParameterDeclaration | Noop | null | undefined, params: Array<Identifier | Pattern | RestElement | TSParameterProperty>, returnType?: TSTypeAnnotation | Noop | null): TSDeclareMethod;
1998
+ declare function tsQualifiedName(left: TSEntityName, right: Identifier): TSQualifiedName;
1999
+ declare function tsCallSignatureDeclaration(typeParameters: TSTypeParameterDeclaration | null | undefined, parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>, typeAnnotation?: TSTypeAnnotation | null): TSCallSignatureDeclaration;
2000
+ declare function tsConstructSignatureDeclaration(typeParameters: TSTypeParameterDeclaration | null | undefined, parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>, typeAnnotation?: TSTypeAnnotation | null): TSConstructSignatureDeclaration;
2001
+ declare function tsPropertySignature(key: Expression, typeAnnotation?: TSTypeAnnotation | null): TSPropertySignature;
2002
+ declare function tsMethodSignature(key: Expression, typeParameters: TSTypeParameterDeclaration | null | undefined, parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>, typeAnnotation?: TSTypeAnnotation | null): TSMethodSignature;
2003
+ declare function tsIndexSignature(parameters: Array<Identifier>, typeAnnotation?: TSTypeAnnotation | null): TSIndexSignature;
2004
+ declare function tsAnyKeyword(): TSAnyKeyword;
2005
+ declare function tsBooleanKeyword(): TSBooleanKeyword;
2006
+ declare function tsBigIntKeyword(): TSBigIntKeyword;
2007
+ declare function tsIntrinsicKeyword(): TSIntrinsicKeyword;
2008
+ declare function tsNeverKeyword(): TSNeverKeyword;
2009
+ declare function tsNullKeyword(): TSNullKeyword;
2010
+ declare function tsNumberKeyword(): TSNumberKeyword;
2011
+ declare function tsObjectKeyword(): TSObjectKeyword;
2012
+ declare function tsStringKeyword(): TSStringKeyword;
2013
+ declare function tsSymbolKeyword(): TSSymbolKeyword;
2014
+ declare function tsUndefinedKeyword(): TSUndefinedKeyword;
2015
+ declare function tsUnknownKeyword(): TSUnknownKeyword;
2016
+ declare function tsVoidKeyword(): TSVoidKeyword;
2017
+ declare function tsThisType(): TSThisType;
2018
+ declare function tsFunctionType(typeParameters: TSTypeParameterDeclaration | null | undefined, parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>, typeAnnotation?: TSTypeAnnotation | null): TSFunctionType;
2019
+ declare function tsConstructorType(typeParameters: TSTypeParameterDeclaration | null | undefined, parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>, typeAnnotation?: TSTypeAnnotation | null): TSConstructorType;
2020
+ declare function tsTypeReference(typeName: TSEntityName, typeParameters?: TSTypeParameterInstantiation | null): TSTypeReference;
2021
+ declare function tsTypePredicate(parameterName: Identifier | TSThisType, typeAnnotation?: TSTypeAnnotation | null, asserts?: boolean | null): TSTypePredicate;
2022
+ declare function tsTypeQuery(exprName: TSEntityName | TSImportType, typeParameters?: TSTypeParameterInstantiation | null): TSTypeQuery;
2023
+ declare function tsTypeLiteral(members: Array<TSTypeElement>): TSTypeLiteral;
2024
+ declare function tsArrayType(elementType: TSType): TSArrayType;
2025
+ declare function tsTupleType(elementTypes: Array<TSType | TSNamedTupleMember>): TSTupleType;
2026
+ declare function tsOptionalType(typeAnnotation: TSType): TSOptionalType;
2027
+ declare function tsRestType(typeAnnotation: TSType): TSRestType;
2028
+ declare function tsNamedTupleMember(label: Identifier, elementType: TSType, optional?: boolean): TSNamedTupleMember;
2029
+ declare function tsUnionType(types: Array<TSType>): TSUnionType;
2030
+ declare function tsIntersectionType(types: Array<TSType>): TSIntersectionType;
2031
+ declare function tsConditionalType(checkType: TSType, extendsType: TSType, trueType: TSType, falseType: TSType): TSConditionalType;
2032
+ declare function tsInferType(typeParameter: TSTypeParameter): TSInferType;
2033
+ declare function tsParenthesizedType(typeAnnotation: TSType): TSParenthesizedType;
2034
+ declare function tsTypeOperator(typeAnnotation: TSType): TSTypeOperator;
2035
+ declare function tsIndexedAccessType(objectType: TSType, indexType: TSType): TSIndexedAccessType;
2036
+ declare function tsMappedType(typeParameter: TSTypeParameter, typeAnnotation?: TSType | null, nameType?: TSType | null): TSMappedType;
2037
+ declare function tsTemplateLiteralType(quasis: Array<TemplateElement>, types: Array<TSType>): TSTemplateLiteralType;
2038
+ declare function tsLiteralType(literal: NumericLiteral | StringLiteral | BooleanLiteral | BigIntLiteral | TemplateLiteral | UnaryExpression): TSLiteralType;
2039
+ declare function tsExpressionWithTypeArguments(expression: TSEntityName, typeParameters?: TSTypeParameterInstantiation | null): TSExpressionWithTypeArguments;
2040
+ declare function tsInterfaceDeclaration(id: Identifier, typeParameters: TSTypeParameterDeclaration | null | undefined, _extends: Array<TSExpressionWithTypeArguments> | null | undefined, body: TSInterfaceBody): TSInterfaceDeclaration;
2041
+ declare function tsInterfaceBody(body: Array<TSTypeElement>): TSInterfaceBody;
2042
+ declare function tsTypeAliasDeclaration(id: Identifier, typeParameters: TSTypeParameterDeclaration | null | undefined, typeAnnotation: TSType): TSTypeAliasDeclaration;
2043
+ declare function tsInstantiationExpression(expression: Expression, typeParameters?: TSTypeParameterInstantiation | null): TSInstantiationExpression;
2044
+ declare function tsAsExpression(expression: Expression, typeAnnotation: TSType): TSAsExpression;
2045
+ declare function tsSatisfiesExpression(expression: Expression, typeAnnotation: TSType): TSSatisfiesExpression;
2046
+ declare function tsTypeAssertion(typeAnnotation: TSType, expression: Expression): TSTypeAssertion;
2047
+ declare function tsEnumBody(members: Array<TSEnumMember>): TSEnumBody;
2048
+ declare function tsEnumDeclaration(id: Identifier, members: Array<TSEnumMember>): TSEnumDeclaration;
2049
+ declare function tsEnumMember(id: Identifier | StringLiteral, initializer?: Expression | null): TSEnumMember;
2050
+ declare function tsModuleDeclaration(id: Identifier | StringLiteral, body: TSModuleBlock | TSModuleDeclaration): TSModuleDeclaration;
2051
+ declare function tsModuleBlock(body: Array<Statement>): TSModuleBlock;
2052
+ declare function tsImportType(argument: StringLiteral, qualifier?: TSEntityName | null, typeParameters?: TSTypeParameterInstantiation | null): TSImportType;
2053
+ declare function tsImportEqualsDeclaration(id: Identifier, moduleReference: TSEntityName | TSExternalModuleReference): TSImportEqualsDeclaration;
2054
+ declare function tsExternalModuleReference(expression: StringLiteral): TSExternalModuleReference;
2055
+ declare function tsNonNullExpression(expression: Expression): TSNonNullExpression;
2056
+ declare function tsExportAssignment(expression: Expression): TSExportAssignment;
2057
+ declare function tsNamespaceExportDeclaration(id: Identifier): TSNamespaceExportDeclaration;
2058
+ declare function tsTypeAnnotation(typeAnnotation: TSType): TSTypeAnnotation;
2059
+ declare function tsTypeParameterInstantiation(params: Array<TSType>): TSTypeParameterInstantiation;
2060
+ declare function tsTypeParameterDeclaration(params: Array<TSTypeParameter>): TSTypeParameterDeclaration;
2061
+ declare function tsTypeParameter(constraint: TSType | null | undefined, _default: TSType | null | undefined, name: string): TSTypeParameter;
2062
+ declare function isAccessor(node: object | null | undefined, opts?: object | null): node is Accessor;
2063
+ declare function assertAccessor(node: object | null | undefined, opts?: object | null): void;
2064
+ declare function isAnyTypeAnnotation(node: object | null | undefined, opts?: object | null): node is AnyTypeAnnotation;
2065
+ declare function assertAnyTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2066
+ declare function isArgumentPlaceholder(node: object | null | undefined, opts?: object | null): node is ArgumentPlaceholder;
2067
+ declare function assertArgumentPlaceholder(node: object | null | undefined, opts?: object | null): void;
2068
+ declare function isArrayExpression(node: object | null | undefined, opts?: object | null): node is ArrayExpression;
2069
+ declare function assertArrayExpression(node: object | null | undefined, opts?: object | null): void;
2070
+ declare function isArrayPattern(node: object | null | undefined, opts?: object | null): node is ArrayPattern;
2071
+ declare function assertArrayPattern(node: object | null | undefined, opts?: object | null): void;
2072
+ declare function isArrayTypeAnnotation(node: object | null | undefined, opts?: object | null): node is ArrayTypeAnnotation;
2073
+ declare function assertArrayTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2074
+ declare function isArrowFunctionExpression(node: object | null | undefined, opts?: object | null): node is ArrowFunctionExpression;
2075
+ declare function assertArrowFunctionExpression(node: object | null | undefined, opts?: object | null): void;
2076
+ declare function isAssignmentExpression(node: object | null | undefined, opts?: object | null): node is AssignmentExpression;
2077
+ declare function assertAssignmentExpression(node: object | null | undefined, opts?: object | null): void;
2078
+ declare function isAssignmentPattern(node: object | null | undefined, opts?: object | null): node is AssignmentPattern;
2079
+ declare function assertAssignmentPattern(node: object | null | undefined, opts?: object | null): void;
2080
+ declare function isAwaitExpression(node: object | null | undefined, opts?: object | null): node is AwaitExpression;
2081
+ declare function assertAwaitExpression(node: object | null | undefined, opts?: object | null): void;
2082
+ declare function isBigIntLiteral(node: object | null | undefined, opts?: object | null): node is BigIntLiteral;
2083
+ declare function assertBigIntLiteral(node: object | null | undefined, opts?: object | null): void;
2084
+ declare function isBinary(node: object | null | undefined, opts?: object | null): node is Binary;
2085
+ declare function assertBinary(node: object | null | undefined, opts?: object | null): void;
2086
+ declare function isBinaryExpression(node: object | null | undefined, opts?: object | null): node is BinaryExpression;
2087
+ declare function assertBinaryExpression(node: object | null | undefined, opts?: object | null): void;
2088
+ declare function isBindExpression(node: object | null | undefined, opts?: object | null): node is BindExpression;
2089
+ declare function assertBindExpression(node: object | null | undefined, opts?: object | null): void;
2090
+ declare function isBlock(node: object | null | undefined, opts?: object | null): node is Block;
2091
+ declare function assertBlock(node: object | null | undefined, opts?: object | null): void;
2092
+ declare function isBlockParent(node: object | null | undefined, opts?: object | null): node is BlockParent;
2093
+ declare function assertBlockParent(node: object | null | undefined, opts?: object | null): void;
2094
+ declare function isBlockStatement(node: object | null | undefined, opts?: object | null): node is BlockStatement;
2095
+ declare function assertBlockStatement(node: object | null | undefined, opts?: object | null): void;
2096
+ declare function isBooleanLiteral(node: object | null | undefined, opts?: object | null): node is BooleanLiteral;
2097
+ declare function assertBooleanLiteral(node: object | null | undefined, opts?: object | null): void;
2098
+ declare function isBooleanLiteralTypeAnnotation(node: object | null | undefined, opts?: object | null): node is BooleanLiteralTypeAnnotation;
2099
+ declare function assertBooleanLiteralTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2100
+ declare function isBooleanTypeAnnotation(node: object | null | undefined, opts?: object | null): node is BooleanTypeAnnotation;
2101
+ declare function assertBooleanTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2102
+ declare function isBreakStatement(node: object | null | undefined, opts?: object | null): node is BreakStatement;
2103
+ declare function assertBreakStatement(node: object | null | undefined, opts?: object | null): void;
2104
+ declare function isCallExpression(node: object | null | undefined, opts?: object | null): node is CallExpression;
2105
+ declare function assertCallExpression(node: object | null | undefined, opts?: object | null): void;
2106
+ declare function isCatchClause(node: object | null | undefined, opts?: object | null): node is CatchClause;
2107
+ declare function assertCatchClause(node: object | null | undefined, opts?: object | null): void;
2108
+ declare function isClass(node: object | null | undefined, opts?: object | null): node is Class;
2109
+ declare function assertClass(node: object | null | undefined, opts?: object | null): void;
2110
+ declare function isClassAccessorProperty(node: object | null | undefined, opts?: object | null): node is ClassAccessorProperty;
2111
+ declare function assertClassAccessorProperty(node: object | null | undefined, opts?: object | null): void;
2112
+ declare function isClassBody(node: object | null | undefined, opts?: object | null): node is ClassBody;
2113
+ declare function assertClassBody(node: object | null | undefined, opts?: object | null): void;
2114
+ declare function isClassDeclaration(node: object | null | undefined, opts?: object | null): node is ClassDeclaration;
2115
+ declare function assertClassDeclaration(node: object | null | undefined, opts?: object | null): void;
2116
+ declare function isClassExpression(node: object | null | undefined, opts?: object | null): node is ClassExpression;
2117
+ declare function assertClassExpression(node: object | null | undefined, opts?: object | null): void;
2118
+ declare function isClassImplements(node: object | null | undefined, opts?: object | null): node is ClassImplements;
2119
+ declare function assertClassImplements(node: object | null | undefined, opts?: object | null): void;
2120
+ declare function isClassMethod(node: object | null | undefined, opts?: object | null): node is ClassMethod;
2121
+ declare function assertClassMethod(node: object | null | undefined, opts?: object | null): void;
2122
+ declare function isClassPrivateMethod(node: object | null | undefined, opts?: object | null): node is ClassPrivateMethod;
2123
+ declare function assertClassPrivateMethod(node: object | null | undefined, opts?: object | null): void;
2124
+ declare function isClassPrivateProperty(node: object | null | undefined, opts?: object | null): node is ClassPrivateProperty;
2125
+ declare function assertClassPrivateProperty(node: object | null | undefined, opts?: object | null): void;
2126
+ declare function isClassProperty(node: object | null | undefined, opts?: object | null): node is ClassProperty;
2127
+ declare function assertClassProperty(node: object | null | undefined, opts?: object | null): void;
2128
+ declare function isCompletionStatement(node: object | null | undefined, opts?: object | null): node is CompletionStatement;
2129
+ declare function assertCompletionStatement(node: object | null | undefined, opts?: object | null): void;
2130
+ declare function isConditional(node: object | null | undefined, opts?: object | null): node is Conditional;
2131
+ declare function assertConditional(node: object | null | undefined, opts?: object | null): void;
2132
+ declare function isConditionalExpression(node: object | null | undefined, opts?: object | null): node is ConditionalExpression;
2133
+ declare function assertConditionalExpression(node: object | null | undefined, opts?: object | null): void;
2134
+ declare function isContinueStatement(node: object | null | undefined, opts?: object | null): node is ContinueStatement;
2135
+ declare function assertContinueStatement(node: object | null | undefined, opts?: object | null): void;
2136
+ declare function isDebuggerStatement(node: object | null | undefined, opts?: object | null): node is DebuggerStatement;
2137
+ declare function assertDebuggerStatement(node: object | null | undefined, opts?: object | null): void;
2138
+ declare function isDecimalLiteral(node: object | null | undefined, opts?: object | null): node is DecimalLiteral;
2139
+ declare function assertDecimalLiteral(node: object | null | undefined, opts?: object | null): void;
2140
+ declare function isDeclaration(node: object | null | undefined, opts?: object | null): node is Declaration;
2141
+ declare function assertDeclaration(node: object | null | undefined, opts?: object | null): void;
2142
+ declare function isDeclareClass(node: object | null | undefined, opts?: object | null): node is DeclareClass;
2143
+ declare function assertDeclareClass(node: object | null | undefined, opts?: object | null): void;
2144
+ declare function isDeclareExportAllDeclaration(node: object | null | undefined, opts?: object | null): node is DeclareExportAllDeclaration;
2145
+ declare function assertDeclareExportAllDeclaration(node: object | null | undefined, opts?: object | null): void;
2146
+ declare function isDeclareExportDeclaration(node: object | null | undefined, opts?: object | null): node is DeclareExportDeclaration;
2147
+ declare function assertDeclareExportDeclaration(node: object | null | undefined, opts?: object | null): void;
2148
+ declare function isDeclareFunction(node: object | null | undefined, opts?: object | null): node is DeclareFunction;
2149
+ declare function assertDeclareFunction(node: object | null | undefined, opts?: object | null): void;
2150
+ declare function isDeclareInterface(node: object | null | undefined, opts?: object | null): node is DeclareInterface;
2151
+ declare function assertDeclareInterface(node: object | null | undefined, opts?: object | null): void;
2152
+ declare function isDeclareModule(node: object | null | undefined, opts?: object | null): node is DeclareModule;
2153
+ declare function assertDeclareModule(node: object | null | undefined, opts?: object | null): void;
2154
+ declare function isDeclareModuleExports(node: object | null | undefined, opts?: object | null): node is DeclareModuleExports;
2155
+ declare function assertDeclareModuleExports(node: object | null | undefined, opts?: object | null): void;
2156
+ declare function isDeclareOpaqueType(node: object | null | undefined, opts?: object | null): node is DeclareOpaqueType;
2157
+ declare function assertDeclareOpaqueType(node: object | null | undefined, opts?: object | null): void;
2158
+ declare function isDeclareTypeAlias(node: object | null | undefined, opts?: object | null): node is DeclareTypeAlias;
2159
+ declare function assertDeclareTypeAlias(node: object | null | undefined, opts?: object | null): void;
2160
+ declare function isDeclareVariable(node: object | null | undefined, opts?: object | null): node is DeclareVariable;
2161
+ declare function assertDeclareVariable(node: object | null | undefined, opts?: object | null): void;
2162
+ declare function isDeclaredPredicate(node: object | null | undefined, opts?: object | null): node is DeclaredPredicate;
2163
+ declare function assertDeclaredPredicate(node: object | null | undefined, opts?: object | null): void;
2164
+ declare function isDecorator(node: object | null | undefined, opts?: object | null): node is Decorator;
2165
+ declare function assertDecorator(node: object | null | undefined, opts?: object | null): void;
2166
+ declare function isDirective(node: object | null | undefined, opts?: object | null): node is Directive;
2167
+ declare function assertDirective(node: object | null | undefined, opts?: object | null): void;
2168
+ declare function isDirectiveLiteral(node: object | null | undefined, opts?: object | null): node is DirectiveLiteral;
2169
+ declare function assertDirectiveLiteral(node: object | null | undefined, opts?: object | null): void;
2170
+ declare function isDoExpression(node: object | null | undefined, opts?: object | null): node is DoExpression;
2171
+ declare function assertDoExpression(node: object | null | undefined, opts?: object | null): void;
2172
+ declare function isDoWhileStatement(node: object | null | undefined, opts?: object | null): node is DoWhileStatement;
2173
+ declare function assertDoWhileStatement(node: object | null | undefined, opts?: object | null): void;
2174
+ declare function isEmptyStatement(node: object | null | undefined, opts?: object | null): node is EmptyStatement;
2175
+ declare function assertEmptyStatement(node: object | null | undefined, opts?: object | null): void;
2176
+ declare function isEmptyTypeAnnotation(node: object | null | undefined, opts?: object | null): node is EmptyTypeAnnotation;
2177
+ declare function assertEmptyTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2178
+ declare function isEnumBody(node: object | null | undefined, opts?: object | null): node is EnumBody;
2179
+ declare function assertEnumBody(node: object | null | undefined, opts?: object | null): void;
2180
+ declare function isEnumBooleanBody(node: object | null | undefined, opts?: object | null): node is EnumBooleanBody;
2181
+ declare function assertEnumBooleanBody(node: object | null | undefined, opts?: object | null): void;
2182
+ declare function isEnumBooleanMember(node: object | null | undefined, opts?: object | null): node is EnumBooleanMember;
2183
+ declare function assertEnumBooleanMember(node: object | null | undefined, opts?: object | null): void;
2184
+ declare function isEnumDeclaration(node: object | null | undefined, opts?: object | null): node is EnumDeclaration;
2185
+ declare function assertEnumDeclaration(node: object | null | undefined, opts?: object | null): void;
2186
+ declare function isEnumDefaultedMember(node: object | null | undefined, opts?: object | null): node is EnumDefaultedMember;
2187
+ declare function assertEnumDefaultedMember(node: object | null | undefined, opts?: object | null): void;
2188
+ declare function isEnumMember(node: object | null | undefined, opts?: object | null): node is EnumMember;
2189
+ declare function assertEnumMember(node: object | null | undefined, opts?: object | null): void;
2190
+ declare function isEnumNumberBody(node: object | null | undefined, opts?: object | null): node is EnumNumberBody;
2191
+ declare function assertEnumNumberBody(node: object | null | undefined, opts?: object | null): void;
2192
+ declare function isEnumNumberMember(node: object | null | undefined, opts?: object | null): node is EnumNumberMember;
2193
+ declare function assertEnumNumberMember(node: object | null | undefined, opts?: object | null): void;
2194
+ declare function isEnumStringBody(node: object | null | undefined, opts?: object | null): node is EnumStringBody;
2195
+ declare function assertEnumStringBody(node: object | null | undefined, opts?: object | null): void;
2196
+ declare function isEnumStringMember(node: object | null | undefined, opts?: object | null): node is EnumStringMember;
2197
+ declare function assertEnumStringMember(node: object | null | undefined, opts?: object | null): void;
2198
+ declare function isEnumSymbolBody(node: object | null | undefined, opts?: object | null): node is EnumSymbolBody;
2199
+ declare function assertEnumSymbolBody(node: object | null | undefined, opts?: object | null): void;
2200
+ declare function isExistsTypeAnnotation(node: object | null | undefined, opts?: object | null): node is ExistsTypeAnnotation;
2201
+ declare function assertExistsTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2202
+ declare function isExportAllDeclaration(node: object | null | undefined, opts?: object | null): node is ExportAllDeclaration;
2203
+ declare function assertExportAllDeclaration(node: object | null | undefined, opts?: object | null): void;
2204
+ declare function isExportDeclaration(node: object | null | undefined, opts?: object | null): node is ExportDeclaration;
2205
+ declare function assertExportDeclaration(node: object | null | undefined, opts?: object | null): void;
2206
+ declare function isExportDefaultDeclaration(node: object | null | undefined, opts?: object | null): node is ExportDefaultDeclaration;
2207
+ declare function assertExportDefaultDeclaration(node: object | null | undefined, opts?: object | null): void;
2208
+ declare function isExportDefaultSpecifier(node: object | null | undefined, opts?: object | null): node is ExportDefaultSpecifier;
2209
+ declare function assertExportDefaultSpecifier(node: object | null | undefined, opts?: object | null): void;
2210
+ declare function isExportNamedDeclaration(node: object | null | undefined, opts?: object | null): node is ExportNamedDeclaration;
2211
+ declare function assertExportNamedDeclaration(node: object | null | undefined, opts?: object | null): void;
2212
+ declare function isExportNamespaceSpecifier(node: object | null | undefined, opts?: object | null): node is ExportNamespaceSpecifier;
2213
+ declare function assertExportNamespaceSpecifier(node: object | null | undefined, opts?: object | null): void;
2214
+ declare function isExportSpecifier(node: object | null | undefined, opts?: object | null): node is ExportSpecifier;
2215
+ declare function assertExportSpecifier(node: object | null | undefined, opts?: object | null): void;
2216
+ declare function isExpression(node: object | null | undefined, opts?: object | null): node is Expression;
2217
+ declare function assertExpression(node: object | null | undefined, opts?: object | null): void;
2218
+ declare function isExpressionStatement(node: object | null | undefined, opts?: object | null): node is ExpressionStatement;
2219
+ declare function assertExpressionStatement(node: object | null | undefined, opts?: object | null): void;
2220
+ declare function isExpressionWrapper(node: object | null | undefined, opts?: object | null): node is ExpressionWrapper;
2221
+ declare function assertExpressionWrapper(node: object | null | undefined, opts?: object | null): void;
2222
+ declare function isFile(node: object | null | undefined, opts?: object | null): node is File;
2223
+ declare function assertFile(node: object | null | undefined, opts?: object | null): void;
2224
+ declare function isFlow(node: object | null | undefined, opts?: object | null): node is Flow;
2225
+ declare function assertFlow(node: object | null | undefined, opts?: object | null): void;
2226
+ declare function isFlowBaseAnnotation(node: object | null | undefined, opts?: object | null): node is FlowBaseAnnotation;
2227
+ declare function assertFlowBaseAnnotation(node: object | null | undefined, opts?: object | null): void;
2228
+ declare function isFlowDeclaration(node: object | null | undefined, opts?: object | null): node is FlowDeclaration;
2229
+ declare function assertFlowDeclaration(node: object | null | undefined, opts?: object | null): void;
2230
+ declare function isFlowPredicate(node: object | null | undefined, opts?: object | null): node is FlowPredicate;
2231
+ declare function assertFlowPredicate(node: object | null | undefined, opts?: object | null): void;
2232
+ declare function isFlowType(node: object | null | undefined, opts?: object | null): node is FlowType;
2233
+ declare function assertFlowType(node: object | null | undefined, opts?: object | null): void;
2234
+ declare function isFor(node: object | null | undefined, opts?: object | null): node is For;
2235
+ declare function assertFor(node: object | null | undefined, opts?: object | null): void;
2236
+ declare function isForInStatement(node: object | null | undefined, opts?: object | null): node is ForInStatement;
2237
+ declare function assertForInStatement(node: object | null | undefined, opts?: object | null): void;
2238
+ declare function isForOfStatement(node: object | null | undefined, opts?: object | null): node is ForOfStatement;
2239
+ declare function assertForOfStatement(node: object | null | undefined, opts?: object | null): void;
2240
+ declare function isForStatement(node: object | null | undefined, opts?: object | null): node is ForStatement;
2241
+ declare function assertForStatement(node: object | null | undefined, opts?: object | null): void;
2242
+ declare function isForXStatement(node: object | null | undefined, opts?: object | null): node is ForXStatement;
2243
+ declare function assertForXStatement(node: object | null | undefined, opts?: object | null): void;
2244
+ declare function isFunction(node: object | null | undefined, opts?: object | null): node is Function;
2245
+ declare function assertFunction(node: object | null | undefined, opts?: object | null): void;
2246
+ declare function isFunctionDeclaration(node: object | null | undefined, opts?: object | null): node is FunctionDeclaration;
2247
+ declare function assertFunctionDeclaration(node: object | null | undefined, opts?: object | null): void;
2248
+ declare function isFunctionExpression(node: object | null | undefined, opts?: object | null): node is FunctionExpression;
2249
+ declare function assertFunctionExpression(node: object | null | undefined, opts?: object | null): void;
2250
+ declare function isFunctionParent(node: object | null | undefined, opts?: object | null): node is FunctionParent;
2251
+ declare function assertFunctionParent(node: object | null | undefined, opts?: object | null): void;
2252
+ declare function isFunctionTypeAnnotation(node: object | null | undefined, opts?: object | null): node is FunctionTypeAnnotation;
2253
+ declare function assertFunctionTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2254
+ declare function isFunctionTypeParam(node: object | null | undefined, opts?: object | null): node is FunctionTypeParam;
2255
+ declare function assertFunctionTypeParam(node: object | null | undefined, opts?: object | null): void;
2256
+ declare function isGenericTypeAnnotation(node: object | null | undefined, opts?: object | null): node is GenericTypeAnnotation;
2257
+ declare function assertGenericTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2258
+ declare function isIdentifier(node: object | null | undefined, opts?: object | null): node is Identifier;
2259
+ declare function assertIdentifier(node: object | null | undefined, opts?: object | null): void;
2260
+ declare function isIfStatement(node: object | null | undefined, opts?: object | null): node is IfStatement;
2261
+ declare function assertIfStatement(node: object | null | undefined, opts?: object | null): void;
2262
+ declare function assertImmutable(node: object | null | undefined, opts?: object | null): void;
2263
+ declare function isImport(node: object | null | undefined, opts?: object | null): node is Import;
2264
+ declare function assertImport(node: object | null | undefined, opts?: object | null): void;
2265
+ declare function isImportAttribute(node: object | null | undefined, opts?: object | null): node is ImportAttribute;
2266
+ declare function assertImportAttribute(node: object | null | undefined, opts?: object | null): void;
2267
+ declare function isImportDeclaration(node: object | null | undefined, opts?: object | null): node is ImportDeclaration;
2268
+ declare function assertImportDeclaration(node: object | null | undefined, opts?: object | null): void;
2269
+ declare function isImportDefaultSpecifier(node: object | null | undefined, opts?: object | null): node is ImportDefaultSpecifier;
2270
+ declare function assertImportDefaultSpecifier(node: object | null | undefined, opts?: object | null): void;
2271
+ declare function isImportExpression(node: object | null | undefined, opts?: object | null): node is ImportExpression;
2272
+ declare function assertImportExpression(node: object | null | undefined, opts?: object | null): void;
2273
+ declare function isImportNamespaceSpecifier(node: object | null | undefined, opts?: object | null): node is ImportNamespaceSpecifier;
2274
+ declare function assertImportNamespaceSpecifier(node: object | null | undefined, opts?: object | null): void;
2275
+ declare function isImportOrExportDeclaration(node: object | null | undefined, opts?: object | null): node is ImportOrExportDeclaration;
2276
+ declare function assertImportOrExportDeclaration(node: object | null | undefined, opts?: object | null): void;
2277
+ declare function isImportSpecifier(node: object | null | undefined, opts?: object | null): node is ImportSpecifier;
2278
+ declare function assertImportSpecifier(node: object | null | undefined, opts?: object | null): void;
2279
+ declare function isIndexedAccessType(node: object | null | undefined, opts?: object | null): node is IndexedAccessType;
2280
+ declare function assertIndexedAccessType(node: object | null | undefined, opts?: object | null): void;
2281
+ declare function isInferredPredicate(node: object | null | undefined, opts?: object | null): node is InferredPredicate;
2282
+ declare function assertInferredPredicate(node: object | null | undefined, opts?: object | null): void;
2283
+ declare function isInterfaceDeclaration(node: object | null | undefined, opts?: object | null): node is InterfaceDeclaration;
2284
+ declare function assertInterfaceDeclaration(node: object | null | undefined, opts?: object | null): void;
2285
+ declare function isInterfaceExtends(node: object | null | undefined, opts?: object | null): node is InterfaceExtends;
2286
+ declare function assertInterfaceExtends(node: object | null | undefined, opts?: object | null): void;
2287
+ declare function isInterfaceTypeAnnotation(node: object | null | undefined, opts?: object | null): node is InterfaceTypeAnnotation;
2288
+ declare function assertInterfaceTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2289
+ declare function isInterpreterDirective(node: object | null | undefined, opts?: object | null): node is InterpreterDirective;
2290
+ declare function assertInterpreterDirective(node: object | null | undefined, opts?: object | null): void;
2291
+ declare function isIntersectionTypeAnnotation(node: object | null | undefined, opts?: object | null): node is IntersectionTypeAnnotation;
2292
+ declare function assertIntersectionTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2293
+ declare function isJSX(node: object | null | undefined, opts?: object | null): node is JSX;
2294
+ declare function assertJSX(node: object | null | undefined, opts?: object | null): void;
2295
+ declare function isJSXAttribute(node: object | null | undefined, opts?: object | null): node is JSXAttribute;
2296
+ declare function assertJSXAttribute(node: object | null | undefined, opts?: object | null): void;
2297
+ declare function isJSXClosingElement(node: object | null | undefined, opts?: object | null): node is JSXClosingElement;
2298
+ declare function assertJSXClosingElement(node: object | null | undefined, opts?: object | null): void;
2299
+ declare function isJSXClosingFragment(node: object | null | undefined, opts?: object | null): node is JSXClosingFragment;
2300
+ declare function assertJSXClosingFragment(node: object | null | undefined, opts?: object | null): void;
2301
+ declare function isJSXElement(node: object | null | undefined, opts?: object | null): node is JSXElement;
2302
+ declare function assertJSXElement(node: object | null | undefined, opts?: object | null): void;
2303
+ declare function isJSXEmptyExpression(node: object | null | undefined, opts?: object | null): node is JSXEmptyExpression;
2304
+ declare function assertJSXEmptyExpression(node: object | null | undefined, opts?: object | null): void;
2305
+ declare function isJSXExpressionContainer(node: object | null | undefined, opts?: object | null): node is JSXExpressionContainer;
2306
+ declare function assertJSXExpressionContainer(node: object | null | undefined, opts?: object | null): void;
2307
+ declare function isJSXFragment(node: object | null | undefined, opts?: object | null): node is JSXFragment;
2308
+ declare function assertJSXFragment(node: object | null | undefined, opts?: object | null): void;
2309
+ declare function isJSXIdentifier(node: object | null | undefined, opts?: object | null): node is JSXIdentifier;
2310
+ declare function assertJSXIdentifier(node: object | null | undefined, opts?: object | null): void;
2311
+ declare function isJSXMemberExpression(node: object | null | undefined, opts?: object | null): node is JSXMemberExpression;
2312
+ declare function assertJSXMemberExpression(node: object | null | undefined, opts?: object | null): void;
2313
+ declare function isJSXNamespacedName(node: object | null | undefined, opts?: object | null): node is JSXNamespacedName;
2314
+ declare function assertJSXNamespacedName(node: object | null | undefined, opts?: object | null): void;
2315
+ declare function isJSXOpeningElement(node: object | null | undefined, opts?: object | null): node is JSXOpeningElement;
2316
+ declare function assertJSXOpeningElement(node: object | null | undefined, opts?: object | null): void;
2317
+ declare function isJSXOpeningFragment(node: object | null | undefined, opts?: object | null): node is JSXOpeningFragment;
2318
+ declare function assertJSXOpeningFragment(node: object | null | undefined, opts?: object | null): void;
2319
+ declare function isJSXSpreadAttribute(node: object | null | undefined, opts?: object | null): node is JSXSpreadAttribute;
2320
+ declare function assertJSXSpreadAttribute(node: object | null | undefined, opts?: object | null): void;
2321
+ declare function isJSXSpreadChild(node: object | null | undefined, opts?: object | null): node is JSXSpreadChild;
2322
+ declare function assertJSXSpreadChild(node: object | null | undefined, opts?: object | null): void;
2323
+ declare function isJSXText(node: object | null | undefined, opts?: object | null): node is JSXText;
2324
+ declare function assertJSXText(node: object | null | undefined, opts?: object | null): void;
2325
+ declare function isLVal(node: object | null | undefined, opts?: object | null): node is LVal;
2326
+ declare function assertLVal(node: object | null | undefined, opts?: object | null): void;
2327
+ declare function isLabeledStatement(node: object | null | undefined, opts?: object | null): node is LabeledStatement;
2328
+ declare function assertLabeledStatement(node: object | null | undefined, opts?: object | null): void;
2329
+ declare function isLiteral(node: object | null | undefined, opts?: object | null): node is Literal;
2330
+ declare function assertLiteral(node: object | null | undefined, opts?: object | null): void;
2331
+ declare function isLogicalExpression(node: object | null | undefined, opts?: object | null): node is LogicalExpression;
2332
+ declare function assertLogicalExpression(node: object | null | undefined, opts?: object | null): void;
2333
+ declare function isLoop(node: object | null | undefined, opts?: object | null): node is Loop;
2334
+ declare function assertLoop(node: object | null | undefined, opts?: object | null): void;
2335
+ declare function isMemberExpression(node: object | null | undefined, opts?: object | null): node is MemberExpression;
2336
+ declare function assertMemberExpression(node: object | null | undefined, opts?: object | null): void;
2337
+ declare function isMetaProperty(node: object | null | undefined, opts?: object | null): node is MetaProperty;
2338
+ declare function assertMetaProperty(node: object | null | undefined, opts?: object | null): void;
2339
+ declare function isMethod(node: object | null | undefined, opts?: object | null): node is Method;
2340
+ declare function assertMethod(node: object | null | undefined, opts?: object | null): void;
2341
+ declare function isMiscellaneous(node: object | null | undefined, opts?: object | null): node is Miscellaneous;
2342
+ declare function assertMiscellaneous(node: object | null | undefined, opts?: object | null): void;
2343
+ declare function isMixedTypeAnnotation(node: object | null | undefined, opts?: object | null): node is MixedTypeAnnotation;
2344
+ declare function assertMixedTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2345
+ declare function isModuleDeclaration(node: object | null | undefined, opts?: object | null): node is ModuleDeclaration;
2346
+ declare function assertModuleDeclaration(node: object | null | undefined, opts?: object | null): void;
2347
+ declare function isModuleExpression(node: object | null | undefined, opts?: object | null): node is ModuleExpression;
2348
+ declare function assertModuleExpression(node: object | null | undefined, opts?: object | null): void;
2349
+ declare function isModuleSpecifier(node: object | null | undefined, opts?: object | null): node is ModuleSpecifier;
2350
+ declare function assertModuleSpecifier(node: object | null | undefined, opts?: object | null): void;
2351
+ declare function isNewExpression(node: object | null | undefined, opts?: object | null): node is NewExpression;
2352
+ declare function assertNewExpression(node: object | null | undefined, opts?: object | null): void;
2353
+ declare function isNoop(node: object | null | undefined, opts?: object | null): node is Noop;
2354
+ declare function assertNoop(node: object | null | undefined, opts?: object | null): void;
2355
+ declare function isNullLiteral(node: object | null | undefined, opts?: object | null): node is NullLiteral;
2356
+ declare function assertNullLiteral(node: object | null | undefined, opts?: object | null): void;
2357
+ declare function isNullLiteralTypeAnnotation(node: object | null | undefined, opts?: object | null): node is NullLiteralTypeAnnotation;
2358
+ declare function assertNullLiteralTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2359
+ declare function isNullableTypeAnnotation(node: object | null | undefined, opts?: object | null): node is NullableTypeAnnotation;
2360
+ declare function assertNullableTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2361
+ /** @deprecated Use `isNumericLiteral` */
2362
+ declare function isNumberLiteral(node: object | null | undefined, opts?: object | null): node is NumericLiteral;
2363
+ /** @deprecated Use `assertNumericLiteral` */
2364
+ declare function assertNumberLiteral(node: object | null | undefined, opts?: object | null): void;
2365
+ declare function isNumberLiteralTypeAnnotation(node: object | null | undefined, opts?: object | null): node is NumberLiteralTypeAnnotation;
2366
+ declare function assertNumberLiteralTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2367
+ declare function isNumberTypeAnnotation(node: object | null | undefined, opts?: object | null): node is NumberTypeAnnotation;
2368
+ declare function assertNumberTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2369
+ declare function isNumericLiteral(node: object | null | undefined, opts?: object | null): node is NumericLiteral;
2370
+ declare function assertNumericLiteral(node: object | null | undefined, opts?: object | null): void;
2371
+ declare function isObjectExpression(node: object | null | undefined, opts?: object | null): node is ObjectExpression;
2372
+ declare function assertObjectExpression(node: object | null | undefined, opts?: object | null): void;
2373
+ declare function isObjectMember(node: object | null | undefined, opts?: object | null): node is ObjectMember;
2374
+ declare function assertObjectMember(node: object | null | undefined, opts?: object | null): void;
2375
+ declare function isObjectMethod(node: object | null | undefined, opts?: object | null): node is ObjectMethod;
2376
+ declare function assertObjectMethod(node: object | null | undefined, opts?: object | null): void;
2377
+ declare function isObjectPattern(node: object | null | undefined, opts?: object | null): node is ObjectPattern;
2378
+ declare function assertObjectPattern(node: object | null | undefined, opts?: object | null): void;
2379
+ declare function isObjectProperty(node: object | null | undefined, opts?: object | null): node is ObjectProperty;
2380
+ declare function assertObjectProperty(node: object | null | undefined, opts?: object | null): void;
2381
+ declare function isObjectTypeAnnotation(node: object | null | undefined, opts?: object | null): node is ObjectTypeAnnotation;
2382
+ declare function assertObjectTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2383
+ declare function isObjectTypeCallProperty(node: object | null | undefined, opts?: object | null): node is ObjectTypeCallProperty;
2384
+ declare function assertObjectTypeCallProperty(node: object | null | undefined, opts?: object | null): void;
2385
+ declare function isObjectTypeIndexer(node: object | null | undefined, opts?: object | null): node is ObjectTypeIndexer;
2386
+ declare function assertObjectTypeIndexer(node: object | null | undefined, opts?: object | null): void;
2387
+ declare function isObjectTypeInternalSlot(node: object | null | undefined, opts?: object | null): node is ObjectTypeInternalSlot;
2388
+ declare function assertObjectTypeInternalSlot(node: object | null | undefined, opts?: object | null): void;
2389
+ declare function isObjectTypeProperty(node: object | null | undefined, opts?: object | null): node is ObjectTypeProperty;
2390
+ declare function assertObjectTypeProperty(node: object | null | undefined, opts?: object | null): void;
2391
+ declare function isObjectTypeSpreadProperty(node: object | null | undefined, opts?: object | null): node is ObjectTypeSpreadProperty;
2392
+ declare function assertObjectTypeSpreadProperty(node: object | null | undefined, opts?: object | null): void;
2393
+ declare function isOpaqueType(node: object | null | undefined, opts?: object | null): node is OpaqueType;
2394
+ declare function assertOpaqueType(node: object | null | undefined, opts?: object | null): void;
2395
+ declare function isOptionalCallExpression(node: object | null | undefined, opts?: object | null): node is OptionalCallExpression;
2396
+ declare function assertOptionalCallExpression(node: object | null | undefined, opts?: object | null): void;
2397
+ declare function isOptionalIndexedAccessType(node: object | null | undefined, opts?: object | null): node is OptionalIndexedAccessType;
2398
+ declare function assertOptionalIndexedAccessType(node: object | null | undefined, opts?: object | null): void;
2399
+ declare function isOptionalMemberExpression(node: object | null | undefined, opts?: object | null): node is OptionalMemberExpression;
2400
+ declare function assertOptionalMemberExpression(node: object | null | undefined, opts?: object | null): void;
2401
+ declare function isParenthesizedExpression(node: object | null | undefined, opts?: object | null): node is ParenthesizedExpression;
2402
+ declare function assertParenthesizedExpression(node: object | null | undefined, opts?: object | null): void;
2403
+ declare function isPattern(node: object | null | undefined, opts?: object | null): node is Pattern;
2404
+ declare function assertPattern(node: object | null | undefined, opts?: object | null): void;
2405
+ declare function isPatternLike(node: object | null | undefined, opts?: object | null): node is PatternLike;
2406
+ declare function assertPatternLike(node: object | null | undefined, opts?: object | null): void;
2407
+ declare function isPipelineBareFunction(node: object | null | undefined, opts?: object | null): node is PipelineBareFunction;
2408
+ declare function assertPipelineBareFunction(node: object | null | undefined, opts?: object | null): void;
2409
+ declare function isPipelinePrimaryTopicReference(node: object | null | undefined, opts?: object | null): node is PipelinePrimaryTopicReference;
2410
+ declare function assertPipelinePrimaryTopicReference(node: object | null | undefined, opts?: object | null): void;
2411
+ declare function isPipelineTopicExpression(node: object | null | undefined, opts?: object | null): node is PipelineTopicExpression;
2412
+ declare function assertPipelineTopicExpression(node: object | null | undefined, opts?: object | null): void;
2413
+ declare function isPlaceholder(node: object | null | undefined, opts?: object | null): node is Placeholder;
2414
+ declare function assertPlaceholder(node: object | null | undefined, opts?: object | null): void;
2415
+ declare function isPrivate(node: object | null | undefined, opts?: object | null): node is Private;
2416
+ declare function assertPrivate(node: object | null | undefined, opts?: object | null): void;
2417
+ declare function isPrivateName(node: object | null | undefined, opts?: object | null): node is PrivateName;
2418
+ declare function assertPrivateName(node: object | null | undefined, opts?: object | null): void;
2419
+ declare function isProgram(node: object | null | undefined, opts?: object | null): node is Program;
2420
+ declare function assertProgram(node: object | null | undefined, opts?: object | null): void;
2421
+ declare function isProperty(node: object | null | undefined, opts?: object | null): node is Property;
2422
+ declare function assertProperty(node: object | null | undefined, opts?: object | null): void;
2423
+ declare function isPureish(node: object | null | undefined, opts?: object | null): node is Pureish;
2424
+ declare function assertPureish(node: object | null | undefined, opts?: object | null): void;
2425
+ declare function isQualifiedTypeIdentifier(node: object | null | undefined, opts?: object | null): node is QualifiedTypeIdentifier;
2426
+ declare function assertQualifiedTypeIdentifier(node: object | null | undefined, opts?: object | null): void;
2427
+ declare function isRecordExpression(node: object | null | undefined, opts?: object | null): node is RecordExpression;
2428
+ declare function assertRecordExpression(node: object | null | undefined, opts?: object | null): void;
2429
+ declare function isRegExpLiteral(node: object | null | undefined, opts?: object | null): node is RegExpLiteral;
2430
+ declare function assertRegExpLiteral(node: object | null | undefined, opts?: object | null): void;
2431
+ /** @deprecated Use `isRegExpLiteral` */
2432
+ declare function isRegexLiteral(node: object | null | undefined, opts?: object | null): node is RegExpLiteral;
2433
+ /** @deprecated Use `assertRegExpLiteral` */
2434
+ declare function assertRegexLiteral(node: object | null | undefined, opts?: object | null): void;
2435
+ declare function isRestElement(node: object | null | undefined, opts?: object | null): node is RestElement;
2436
+ declare function assertRestElement(node: object | null | undefined, opts?: object | null): void;
2437
+ /** @deprecated Use `isRestElement` */
2438
+ declare function isRestProperty(node: object | null | undefined, opts?: object | null): node is RestElement;
2439
+ /** @deprecated Use `assertRestElement` */
2440
+ declare function assertRestProperty(node: object | null | undefined, opts?: object | null): void;
2441
+ declare function isReturnStatement(node: object | null | undefined, opts?: object | null): node is ReturnStatement;
2442
+ declare function assertReturnStatement(node: object | null | undefined, opts?: object | null): void;
2443
+ declare function isScopable(node: object | null | undefined, opts?: object | null): node is Scopable;
2444
+ declare function assertScopable(node: object | null | undefined, opts?: object | null): void;
2445
+ declare function isSequenceExpression(node: object | null | undefined, opts?: object | null): node is SequenceExpression;
2446
+ declare function assertSequenceExpression(node: object | null | undefined, opts?: object | null): void;
2447
+ declare function isSpreadElement(node: object | null | undefined, opts?: object | null): node is SpreadElement;
2448
+ declare function assertSpreadElement(node: object | null | undefined, opts?: object | null): void;
2449
+ /** @deprecated Use `isSpreadElement` */
2450
+ declare function isSpreadProperty(node: object | null | undefined, opts?: object | null): node is SpreadElement;
2451
+ /** @deprecated Use `assertSpreadElement` */
2452
+ declare function assertSpreadProperty(node: object | null | undefined, opts?: object | null): void;
2453
+ declare function isStandardized(node: object | null | undefined, opts?: object | null): node is Standardized;
2454
+ declare function assertStandardized(node: object | null | undefined, opts?: object | null): void;
2455
+ declare function isStatement(node: object | null | undefined, opts?: object | null): node is Statement;
2456
+ declare function assertStatement(node: object | null | undefined, opts?: object | null): void;
2457
+ declare function isStaticBlock(node: object | null | undefined, opts?: object | null): node is StaticBlock;
2458
+ declare function assertStaticBlock(node: object | null | undefined, opts?: object | null): void;
2459
+ declare function isStringLiteral(node: object | null | undefined, opts?: object | null): node is StringLiteral;
2460
+ declare function assertStringLiteral(node: object | null | undefined, opts?: object | null): void;
2461
+ declare function isStringLiteralTypeAnnotation(node: object | null | undefined, opts?: object | null): node is StringLiteralTypeAnnotation;
2462
+ declare function assertStringLiteralTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2463
+ declare function isStringTypeAnnotation(node: object | null | undefined, opts?: object | null): node is StringTypeAnnotation;
2464
+ declare function assertStringTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2465
+ declare function isSuper(node: object | null | undefined, opts?: object | null): node is Super;
2466
+ declare function assertSuper(node: object | null | undefined, opts?: object | null): void;
2467
+ declare function isSwitchCase(node: object | null | undefined, opts?: object | null): node is SwitchCase;
2468
+ declare function assertSwitchCase(node: object | null | undefined, opts?: object | null): void;
2469
+ declare function isSwitchStatement(node: object | null | undefined, opts?: object | null): node is SwitchStatement;
2470
+ declare function assertSwitchStatement(node: object | null | undefined, opts?: object | null): void;
2471
+ declare function isSymbolTypeAnnotation(node: object | null | undefined, opts?: object | null): node is SymbolTypeAnnotation;
2472
+ declare function assertSymbolTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2473
+ declare function isTSAnyKeyword(node: object | null | undefined, opts?: object | null): node is TSAnyKeyword;
2474
+ declare function assertTSAnyKeyword(node: object | null | undefined, opts?: object | null): void;
2475
+ declare function isTSArrayType(node: object | null | undefined, opts?: object | null): node is TSArrayType;
2476
+ declare function assertTSArrayType(node: object | null | undefined, opts?: object | null): void;
2477
+ declare function isTSAsExpression(node: object | null | undefined, opts?: object | null): node is TSAsExpression;
2478
+ declare function assertTSAsExpression(node: object | null | undefined, opts?: object | null): void;
2479
+ declare function isTSBaseType(node: object | null | undefined, opts?: object | null): node is TSBaseType;
2480
+ declare function assertTSBaseType(node: object | null | undefined, opts?: object | null): void;
2481
+ declare function isTSBigIntKeyword(node: object | null | undefined, opts?: object | null): node is TSBigIntKeyword;
2482
+ declare function assertTSBigIntKeyword(node: object | null | undefined, opts?: object | null): void;
2483
+ declare function isTSBooleanKeyword(node: object | null | undefined, opts?: object | null): node is TSBooleanKeyword;
2484
+ declare function assertTSBooleanKeyword(node: object | null | undefined, opts?: object | null): void;
2485
+ declare function isTSCallSignatureDeclaration(node: object | null | undefined, opts?: object | null): node is TSCallSignatureDeclaration;
2486
+ declare function assertTSCallSignatureDeclaration(node: object | null | undefined, opts?: object | null): void;
2487
+ declare function isTSConditionalType(node: object | null | undefined, opts?: object | null): node is TSConditionalType;
2488
+ declare function assertTSConditionalType(node: object | null | undefined, opts?: object | null): void;
2489
+ declare function isTSConstructSignatureDeclaration(node: object | null | undefined, opts?: object | null): node is TSConstructSignatureDeclaration;
2490
+ declare function assertTSConstructSignatureDeclaration(node: object | null | undefined, opts?: object | null): void;
2491
+ declare function isTSConstructorType(node: object | null | undefined, opts?: object | null): node is TSConstructorType;
2492
+ declare function assertTSConstructorType(node: object | null | undefined, opts?: object | null): void;
2493
+ declare function isTSDeclareFunction(node: object | null | undefined, opts?: object | null): node is TSDeclareFunction;
2494
+ declare function assertTSDeclareFunction(node: object | null | undefined, opts?: object | null): void;
2495
+ declare function isTSDeclareMethod(node: object | null | undefined, opts?: object | null): node is TSDeclareMethod;
2496
+ declare function assertTSDeclareMethod(node: object | null | undefined, opts?: object | null): void;
2497
+ declare function isTSEntityName(node: object | null | undefined, opts?: object | null): node is TSEntityName;
2498
+ declare function assertTSEntityName(node: object | null | undefined, opts?: object | null): void;
2499
+ declare function isTSEnumBody(node: object | null | undefined, opts?: object | null): node is TSEnumBody;
2500
+ declare function assertTSEnumBody(node: object | null | undefined, opts?: object | null): void;
2501
+ declare function isTSEnumDeclaration(node: object | null | undefined, opts?: object | null): node is TSEnumDeclaration;
2502
+ declare function assertTSEnumDeclaration(node: object | null | undefined, opts?: object | null): void;
2503
+ declare function isTSEnumMember(node: object | null | undefined, opts?: object | null): node is TSEnumMember;
2504
+ declare function assertTSEnumMember(node: object | null | undefined, opts?: object | null): void;
2505
+ declare function isTSExportAssignment(node: object | null | undefined, opts?: object | null): node is TSExportAssignment;
2506
+ declare function assertTSExportAssignment(node: object | null | undefined, opts?: object | null): void;
2507
+ declare function isTSExpressionWithTypeArguments(node: object | null | undefined, opts?: object | null): node is TSExpressionWithTypeArguments;
2508
+ declare function assertTSExpressionWithTypeArguments(node: object | null | undefined, opts?: object | null): void;
2509
+ declare function isTSExternalModuleReference(node: object | null | undefined, opts?: object | null): node is TSExternalModuleReference;
2510
+ declare function assertTSExternalModuleReference(node: object | null | undefined, opts?: object | null): void;
2511
+ declare function isTSFunctionType(node: object | null | undefined, opts?: object | null): node is TSFunctionType;
2512
+ declare function assertTSFunctionType(node: object | null | undefined, opts?: object | null): void;
2513
+ declare function isTSImportEqualsDeclaration(node: object | null | undefined, opts?: object | null): node is TSImportEqualsDeclaration;
2514
+ declare function assertTSImportEqualsDeclaration(node: object | null | undefined, opts?: object | null): void;
2515
+ declare function isTSImportType(node: object | null | undefined, opts?: object | null): node is TSImportType;
2516
+ declare function assertTSImportType(node: object | null | undefined, opts?: object | null): void;
2517
+ declare function isTSIndexSignature(node: object | null | undefined, opts?: object | null): node is TSIndexSignature;
2518
+ declare function assertTSIndexSignature(node: object | null | undefined, opts?: object | null): void;
2519
+ declare function isTSIndexedAccessType(node: object | null | undefined, opts?: object | null): node is TSIndexedAccessType;
2520
+ declare function assertTSIndexedAccessType(node: object | null | undefined, opts?: object | null): void;
2521
+ declare function isTSInferType(node: object | null | undefined, opts?: object | null): node is TSInferType;
2522
+ declare function assertTSInferType(node: object | null | undefined, opts?: object | null): void;
2523
+ declare function isTSInstantiationExpression(node: object | null | undefined, opts?: object | null): node is TSInstantiationExpression;
2524
+ declare function assertTSInstantiationExpression(node: object | null | undefined, opts?: object | null): void;
2525
+ declare function isTSInterfaceBody(node: object | null | undefined, opts?: object | null): node is TSInterfaceBody;
2526
+ declare function assertTSInterfaceBody(node: object | null | undefined, opts?: object | null): void;
2527
+ declare function isTSInterfaceDeclaration(node: object | null | undefined, opts?: object | null): node is TSInterfaceDeclaration;
2528
+ declare function assertTSInterfaceDeclaration(node: object | null | undefined, opts?: object | null): void;
2529
+ declare function isTSIntersectionType(node: object | null | undefined, opts?: object | null): node is TSIntersectionType;
2530
+ declare function assertTSIntersectionType(node: object | null | undefined, opts?: object | null): void;
2531
+ declare function isTSIntrinsicKeyword(node: object | null | undefined, opts?: object | null): node is TSIntrinsicKeyword;
2532
+ declare function assertTSIntrinsicKeyword(node: object | null | undefined, opts?: object | null): void;
2533
+ declare function isTSLiteralType(node: object | null | undefined, opts?: object | null): node is TSLiteralType;
2534
+ declare function assertTSLiteralType(node: object | null | undefined, opts?: object | null): void;
2535
+ declare function isTSMappedType(node: object | null | undefined, opts?: object | null): node is TSMappedType;
2536
+ declare function assertTSMappedType(node: object | null | undefined, opts?: object | null): void;
2537
+ declare function isTSMethodSignature(node: object | null | undefined, opts?: object | null): node is TSMethodSignature;
2538
+ declare function assertTSMethodSignature(node: object | null | undefined, opts?: object | null): void;
2539
+ declare function isTSModuleBlock(node: object | null | undefined, opts?: object | null): node is TSModuleBlock;
2540
+ declare function assertTSModuleBlock(node: object | null | undefined, opts?: object | null): void;
2541
+ declare function isTSModuleDeclaration(node: object | null | undefined, opts?: object | null): node is TSModuleDeclaration;
2542
+ declare function assertTSModuleDeclaration(node: object | null | undefined, opts?: object | null): void;
2543
+ declare function isTSNamedTupleMember(node: object | null | undefined, opts?: object | null): node is TSNamedTupleMember;
2544
+ declare function assertTSNamedTupleMember(node: object | null | undefined, opts?: object | null): void;
2545
+ declare function isTSNamespaceExportDeclaration(node: object | null | undefined, opts?: object | null): node is TSNamespaceExportDeclaration;
2546
+ declare function assertTSNamespaceExportDeclaration(node: object | null | undefined, opts?: object | null): void;
2547
+ declare function isTSNeverKeyword(node: object | null | undefined, opts?: object | null): node is TSNeverKeyword;
2548
+ declare function assertTSNeverKeyword(node: object | null | undefined, opts?: object | null): void;
2549
+ declare function isTSNonNullExpression(node: object | null | undefined, opts?: object | null): node is TSNonNullExpression;
2550
+ declare function assertTSNonNullExpression(node: object | null | undefined, opts?: object | null): void;
2551
+ declare function isTSNullKeyword(node: object | null | undefined, opts?: object | null): node is TSNullKeyword;
2552
+ declare function assertTSNullKeyword(node: object | null | undefined, opts?: object | null): void;
2553
+ declare function isTSNumberKeyword(node: object | null | undefined, opts?: object | null): node is TSNumberKeyword;
2554
+ declare function assertTSNumberKeyword(node: object | null | undefined, opts?: object | null): void;
2555
+ declare function isTSObjectKeyword(node: object | null | undefined, opts?: object | null): node is TSObjectKeyword;
2556
+ declare function assertTSObjectKeyword(node: object | null | undefined, opts?: object | null): void;
2557
+ declare function isTSOptionalType(node: object | null | undefined, opts?: object | null): node is TSOptionalType;
2558
+ declare function assertTSOptionalType(node: object | null | undefined, opts?: object | null): void;
2559
+ declare function isTSParameterProperty(node: object | null | undefined, opts?: object | null): node is TSParameterProperty;
2560
+ declare function assertTSParameterProperty(node: object | null | undefined, opts?: object | null): void;
2561
+ declare function isTSParenthesizedType(node: object | null | undefined, opts?: object | null): node is TSParenthesizedType;
2562
+ declare function assertTSParenthesizedType(node: object | null | undefined, opts?: object | null): void;
2563
+ declare function isTSPropertySignature(node: object | null | undefined, opts?: object | null): node is TSPropertySignature;
2564
+ declare function assertTSPropertySignature(node: object | null | undefined, opts?: object | null): void;
2565
+ declare function isTSQualifiedName(node: object | null | undefined, opts?: object | null): node is TSQualifiedName;
2566
+ declare function assertTSQualifiedName(node: object | null | undefined, opts?: object | null): void;
2567
+ declare function isTSRestType(node: object | null | undefined, opts?: object | null): node is TSRestType;
2568
+ declare function assertTSRestType(node: object | null | undefined, opts?: object | null): void;
2569
+ declare function isTSSatisfiesExpression(node: object | null | undefined, opts?: object | null): node is TSSatisfiesExpression;
2570
+ declare function assertTSSatisfiesExpression(node: object | null | undefined, opts?: object | null): void;
2571
+ declare function isTSStringKeyword(node: object | null | undefined, opts?: object | null): node is TSStringKeyword;
2572
+ declare function assertTSStringKeyword(node: object | null | undefined, opts?: object | null): void;
2573
+ declare function isTSSymbolKeyword(node: object | null | undefined, opts?: object | null): node is TSSymbolKeyword;
2574
+ declare function assertTSSymbolKeyword(node: object | null | undefined, opts?: object | null): void;
2575
+ declare function isTSTemplateLiteralType(node: object | null | undefined, opts?: object | null): node is TSTemplateLiteralType;
2576
+ declare function assertTSTemplateLiteralType(node: object | null | undefined, opts?: object | null): void;
2577
+ declare function isTSThisType(node: object | null | undefined, opts?: object | null): node is TSThisType;
2578
+ declare function assertTSThisType(node: object | null | undefined, opts?: object | null): void;
2579
+ declare function isTSTupleType(node: object | null | undefined, opts?: object | null): node is TSTupleType;
2580
+ declare function assertTSTupleType(node: object | null | undefined, opts?: object | null): void;
2581
+ declare function isTSType(node: object | null | undefined, opts?: object | null): node is TSType;
2582
+ declare function assertTSType(node: object | null | undefined, opts?: object | null): void;
2583
+ declare function isTSTypeAliasDeclaration(node: object | null | undefined, opts?: object | null): node is TSTypeAliasDeclaration;
2584
+ declare function assertTSTypeAliasDeclaration(node: object | null | undefined, opts?: object | null): void;
2585
+ declare function isTSTypeAnnotation(node: object | null | undefined, opts?: object | null): node is TSTypeAnnotation;
2586
+ declare function assertTSTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2587
+ declare function isTSTypeAssertion(node: object | null | undefined, opts?: object | null): node is TSTypeAssertion;
2588
+ declare function assertTSTypeAssertion(node: object | null | undefined, opts?: object | null): void;
2589
+ declare function isTSTypeElement(node: object | null | undefined, opts?: object | null): node is TSTypeElement;
2590
+ declare function assertTSTypeElement(node: object | null | undefined, opts?: object | null): void;
2591
+ declare function isTSTypeLiteral(node: object | null | undefined, opts?: object | null): node is TSTypeLiteral;
2592
+ declare function assertTSTypeLiteral(node: object | null | undefined, opts?: object | null): void;
2593
+ declare function isTSTypeOperator(node: object | null | undefined, opts?: object | null): node is TSTypeOperator;
2594
+ declare function assertTSTypeOperator(node: object | null | undefined, opts?: object | null): void;
2595
+ declare function isTSTypeParameter(node: object | null | undefined, opts?: object | null): node is TSTypeParameter;
2596
+ declare function assertTSTypeParameter(node: object | null | undefined, opts?: object | null): void;
2597
+ declare function isTSTypeParameterDeclaration(node: object | null | undefined, opts?: object | null): node is TSTypeParameterDeclaration;
2598
+ declare function assertTSTypeParameterDeclaration(node: object | null | undefined, opts?: object | null): void;
2599
+ declare function isTSTypeParameterInstantiation(node: object | null | undefined, opts?: object | null): node is TSTypeParameterInstantiation;
2600
+ declare function assertTSTypeParameterInstantiation(node: object | null | undefined, opts?: object | null): void;
2601
+ declare function isTSTypePredicate(node: object | null | undefined, opts?: object | null): node is TSTypePredicate;
2602
+ declare function assertTSTypePredicate(node: object | null | undefined, opts?: object | null): void;
2603
+ declare function isTSTypeQuery(node: object | null | undefined, opts?: object | null): node is TSTypeQuery;
2604
+ declare function assertTSTypeQuery(node: object | null | undefined, opts?: object | null): void;
2605
+ declare function isTSTypeReference(node: object | null | undefined, opts?: object | null): node is TSTypeReference;
2606
+ declare function assertTSTypeReference(node: object | null | undefined, opts?: object | null): void;
2607
+ declare function isTSUndefinedKeyword(node: object | null | undefined, opts?: object | null): node is TSUndefinedKeyword;
2608
+ declare function assertTSUndefinedKeyword(node: object | null | undefined, opts?: object | null): void;
2609
+ declare function isTSUnionType(node: object | null | undefined, opts?: object | null): node is TSUnionType;
2610
+ declare function assertTSUnionType(node: object | null | undefined, opts?: object | null): void;
2611
+ declare function isTSUnknownKeyword(node: object | null | undefined, opts?: object | null): node is TSUnknownKeyword;
2612
+ declare function assertTSUnknownKeyword(node: object | null | undefined, opts?: object | null): void;
2613
+ declare function isTSVoidKeyword(node: object | null | undefined, opts?: object | null): node is TSVoidKeyword;
2614
+ declare function assertTSVoidKeyword(node: object | null | undefined, opts?: object | null): void;
2615
+ declare function isTaggedTemplateExpression(node: object | null | undefined, opts?: object | null): node is TaggedTemplateExpression;
2616
+ declare function assertTaggedTemplateExpression(node: object | null | undefined, opts?: object | null): void;
2617
+ declare function isTemplateElement(node: object | null | undefined, opts?: object | null): node is TemplateElement;
2618
+ declare function assertTemplateElement(node: object | null | undefined, opts?: object | null): void;
2619
+ declare function isTemplateLiteral(node: object | null | undefined, opts?: object | null): node is TemplateLiteral;
2620
+ declare function assertTemplateLiteral(node: object | null | undefined, opts?: object | null): void;
2621
+ declare function isTerminatorless(node: object | null | undefined, opts?: object | null): node is Terminatorless;
2622
+ declare function assertTerminatorless(node: object | null | undefined, opts?: object | null): void;
2623
+ declare function isThisExpression(node: object | null | undefined, opts?: object | null): node is ThisExpression;
2624
+ declare function assertThisExpression(node: object | null | undefined, opts?: object | null): void;
2625
+ declare function isThisTypeAnnotation(node: object | null | undefined, opts?: object | null): node is ThisTypeAnnotation;
2626
+ declare function assertThisTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2627
+ declare function isThrowStatement(node: object | null | undefined, opts?: object | null): node is ThrowStatement;
2628
+ declare function assertThrowStatement(node: object | null | undefined, opts?: object | null): void;
2629
+ declare function isTopicReference(node: object | null | undefined, opts?: object | null): node is TopicReference;
2630
+ declare function assertTopicReference(node: object | null | undefined, opts?: object | null): void;
2631
+ declare function isTryStatement(node: object | null | undefined, opts?: object | null): node is TryStatement;
2632
+ declare function assertTryStatement(node: object | null | undefined, opts?: object | null): void;
2633
+ declare function isTupleExpression(node: object | null | undefined, opts?: object | null): node is TupleExpression;
2634
+ declare function assertTupleExpression(node: object | null | undefined, opts?: object | null): void;
2635
+ declare function isTupleTypeAnnotation(node: object | null | undefined, opts?: object | null): node is TupleTypeAnnotation;
2636
+ declare function assertTupleTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2637
+ declare function isTypeAlias(node: object | null | undefined, opts?: object | null): node is TypeAlias;
2638
+ declare function assertTypeAlias(node: object | null | undefined, opts?: object | null): void;
2639
+ declare function isTypeAnnotation(node: object | null | undefined, opts?: object | null): node is TypeAnnotation;
2640
+ declare function assertTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2641
+ declare function isTypeCastExpression(node: object | null | undefined, opts?: object | null): node is TypeCastExpression;
2642
+ declare function assertTypeCastExpression(node: object | null | undefined, opts?: object | null): void;
2643
+ declare function isTypeParameter(node: object | null | undefined, opts?: object | null): node is TypeParameter;
2644
+ declare function assertTypeParameter(node: object | null | undefined, opts?: object | null): void;
2645
+ declare function isTypeParameterDeclaration(node: object | null | undefined, opts?: object | null): node is TypeParameterDeclaration;
2646
+ declare function assertTypeParameterDeclaration(node: object | null | undefined, opts?: object | null): void;
2647
+ declare function isTypeParameterInstantiation(node: object | null | undefined, opts?: object | null): node is TypeParameterInstantiation;
2648
+ declare function assertTypeParameterInstantiation(node: object | null | undefined, opts?: object | null): void;
2649
+ declare function isTypeScript(node: object | null | undefined, opts?: object | null): node is TypeScript;
2650
+ declare function assertTypeScript(node: object | null | undefined, opts?: object | null): void;
2651
+ declare function isTypeofTypeAnnotation(node: object | null | undefined, opts?: object | null): node is TypeofTypeAnnotation;
2652
+ declare function assertTypeofTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2653
+ declare function isUnaryExpression(node: object | null | undefined, opts?: object | null): node is UnaryExpression;
2654
+ declare function assertUnaryExpression(node: object | null | undefined, opts?: object | null): void;
2655
+ declare function isUnaryLike(node: object | null | undefined, opts?: object | null): node is UnaryLike;
2656
+ declare function assertUnaryLike(node: object | null | undefined, opts?: object | null): void;
2657
+ declare function isUnionTypeAnnotation(node: object | null | undefined, opts?: object | null): node is UnionTypeAnnotation;
2658
+ declare function assertUnionTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2659
+ declare function isUpdateExpression(node: object | null | undefined, opts?: object | null): node is UpdateExpression;
2660
+ declare function assertUpdateExpression(node: object | null | undefined, opts?: object | null): void;
2661
+ declare function isUserWhitespacable(node: object | null | undefined, opts?: object | null): node is UserWhitespacable;
2662
+ declare function assertUserWhitespacable(node: object | null | undefined, opts?: object | null): void;
2663
+ declare function isV8IntrinsicIdentifier(node: object | null | undefined, opts?: object | null): node is V8IntrinsicIdentifier;
2664
+ declare function assertV8IntrinsicIdentifier(node: object | null | undefined, opts?: object | null): void;
2665
+ declare function isVariableDeclaration(node: object | null | undefined, opts?: object | null): node is VariableDeclaration;
2666
+ declare function assertVariableDeclaration(node: object | null | undefined, opts?: object | null): void;
2667
+ declare function isVariableDeclarator(node: object | null | undefined, opts?: object | null): node is VariableDeclarator;
2668
+ declare function assertVariableDeclarator(node: object | null | undefined, opts?: object | null): void;
2669
+ declare function isVariance(node: object | null | undefined, opts?: object | null): node is Variance;
2670
+ declare function assertVariance(node: object | null | undefined, opts?: object | null): void;
2671
+ declare function isVoidTypeAnnotation(node: object | null | undefined, opts?: object | null): node is VoidTypeAnnotation;
2672
+ declare function assertVoidTypeAnnotation(node: object | null | undefined, opts?: object | null): void;
2673
+ declare function isWhile(node: object | null | undefined, opts?: object | null): node is While;
2674
+ declare function assertWhile(node: object | null | undefined, opts?: object | null): void;
2675
+ declare function isWhileStatement(node: object | null | undefined, opts?: object | null): node is WhileStatement;
2676
+ declare function assertWhileStatement(node: object | null | undefined, opts?: object | null): void;
2677
+ declare function isWithStatement(node: object | null | undefined, opts?: object | null): node is WithStatement;
2678
+ declare function assertWithStatement(node: object | null | undefined, opts?: object | null): void;
2679
+ declare function isYieldExpression(node: object | null | undefined, opts?: object | null): node is YieldExpression;
2680
+ declare function assertYieldExpression(node: object | null | undefined, opts?: object | null): void;
2681
+ declare function assertNode(obj: any): void
2682
+ declare function createTypeAnnotationBasedOnTypeof(type: 'string' | 'number' | 'undefined' | 'boolean' | 'function' | 'object' | 'symbol'): StringTypeAnnotation | VoidTypeAnnotation | NumberTypeAnnotation | BooleanTypeAnnotation | GenericTypeAnnotation
2683
+ declare function createUnionTypeAnnotation<T extends FlowType>(types: [T]): T
2684
+ declare function createUnionTypeAnnotation(types: ReadonlyArray<FlowType>): UnionTypeAnnotation
2685
+ declare function createFlowUnionType<T extends FlowType>(types: [T]): T
2686
+ declare function createFlowUnionType(types: ReadonlyArray<FlowType>): UnionTypeAnnotation
2687
+ declare function buildChildren(node: { children: ReadonlyArray<JSXText | JSXExpressionContainer | JSXSpreadChild | JSXElement | JSXFragment | JSXEmptyExpression> }): JSXElement['children']
2688
+ declare function clone<T extends Node>(n: T): T;
2689
+ declare function cloneDeep<T extends Node>(n: T): T;
2690
+ declare function cloneDeepWithoutLoc<T extends Node>(n: T): T;
2691
+ declare function cloneNode<T extends Node>(n: T, deep?: boolean, withoutLoc?: boolean): T;
2692
+ declare function cloneWithoutLoc<T extends Node>(n: T): T;
2693
+ type CommentTypeShorthand = 'leading' | 'inner' | 'trailing'
2694
+ declare function addComment<T extends Node>(node: T, type: CommentTypeShorthand, content: string, line?: boolean): T
2695
+ declare function addComments<T extends Node>(node: T, type: CommentTypeShorthand, comments: ReadonlyArray<Comment>): T
2696
+ declare function inheritInnerComments(node: Node, parent: Node): void
2697
+ declare function inheritLeadingComments(node: Node, parent: Node): void
2698
+ declare function inheritsComments<T extends Node>(node: T, parent: Node): void
2699
+ declare function inheritTrailingComments(node: Node, parent: Node): void
2700
+ declare function removeComments<T extends Node>(node: T): T
2701
+ declare function ensureBlock(node: Extract<Node, { body: BlockStatement | Statement | Expression }>): BlockStatement
2702
+ declare function ensureBlock<K extends keyof Extract<Node, { body: BlockStatement | Statement | Expression }> = 'body'>(node: Extract<Node, Record<K, BlockStatement | Statement | Expression>>, key: K): BlockStatement
2703
+ declare function toBindingIdentifierName(name: { toString(): string } | null | undefined): string
2704
+ declare function toBlock(node: Statement | Expression, parent?: Function | null): BlockStatement
2705
+ declare function toComputedKey<T extends Extract<Node, { computed: boolean | null }>>(node: T, key?: Expression | Identifier): Expression
2706
+ declare function toExpression(node: Function): FunctionExpression
2707
+ declare function toExpression(node: Class): ClassExpression
2708
+ declare function toExpression(node: ExpressionStatement | Expression | Class | Function): Expression
2709
+ declare function toIdentifier(name: { toString(): string } | null | undefined): string
2710
+ declare function toKeyAlias(node: Method | Property, key?: Node): string
2711
+ declare function toSequenceExpression(nodes: ReadonlyArray<Node>, scope: { push(value: { id: LVal; kind: 'var'; init?: Expression}): void; buildUndefinedNode(): Node }): SequenceExpression | undefined
2712
+ declare function toStatement(node: AssignmentExpression, ignore?: boolean): ExpressionStatement
2713
+ declare function toStatement(node: Statement | AssignmentExpression, ignore?: boolean): Statement
2714
+ declare function toStatement(node: Class, ignore: true): ClassDeclaration | undefined
2715
+ declare function toStatement(node: Class, ignore?: boolean): ClassDeclaration
2716
+ declare function toStatement(node: Function, ignore: true): FunctionDeclaration | undefined
2717
+ declare function toStatement(node: Function, ignore?: boolean): FunctionDeclaration
2718
+ declare function toStatement(node: Statement | Class | Function | AssignmentExpression, ignore: true): Statement | undefined
2719
+ declare function toStatement(node: Statement | Class | Function | AssignmentExpression, ignore?: boolean): Statement
2720
+ declare function valueToNode(value: undefined): Identifier
2721
+ declare function valueToNode(value: boolean): BooleanLiteral
2722
+ declare function valueToNode(value: null): NullLiteral
2723
+ declare function valueToNode(value: string): StringLiteral
2724
+ declare function valueToNode(value: number): NumericLiteral | BinaryExpression | UnaryExpression
2725
+ declare function valueToNode(value: RegExp): RegExpLiteral
2726
+ declare function valueToNode(value: ReadonlyArray<undefined | boolean | null | string | number | RegExp | object>): ArrayExpression
2727
+ declare function valueToNode(value: object): ObjectExpression
2728
+ declare function valueToNode(value: undefined | boolean | null | string | number | RegExp | object): Expression
2729
+ declare function removeTypeDuplicates(types: ReadonlyArray<FlowType | false | null | undefined>): FlowType[]
2730
+ declare function appendToMemberExpression<T extends Pick<MemberExpression, 'object' | 'property'>>(member: T, append: MemberExpression['property'], computed?: boolean): T
2731
+ declare function inherits<T extends Node | null | undefined>(child: T, parent: Node | null | undefined): T
2732
+ declare function prependToMemberExpression<T extends Pick<MemberExpression, 'object' | 'property'>>(member: T, prepend: MemberExpression['object']): T
2733
+ declare function removeProperties(
2734
+ n: Node,
2735
+ opts?: { preserveComments: boolean } | null
2736
+ ): void;
2737
+ declare function removePropertiesDeep<T extends Node>(
2738
+ n: T,
2739
+ opts?: { preserveComments: boolean } | null
2740
+ ): T;
2741
+ declare function getBindingIdentifiers(node: Node, duplicates: true, outerOnly?: boolean): Record<string, Array<Identifier>>
2742
+ declare function getBindingIdentifiers(node: Node, duplicates?: false, outerOnly?: boolean): Record<string, Identifier>
2743
+ declare function getBindingIdentifiers(node: Node, duplicates: boolean, outerOnly?: boolean): Record<string, Identifier | Array<Identifier>>
2744
+ declare function getOuterBindingIdentifiers(node: Node, duplicates: true): Record<string, Array<Identifier>>
2745
+ declare function getOuterBindingIdentifiers(node: Node, duplicates?: false): Record<string, Identifier>
2746
+ declare function getOuterBindingIdentifiers(node: Node, duplicates: boolean): Record<string, Identifier | Array<Identifier>>
2747
+ type TraversalAncestors = ReadonlyArray<{
2748
+ node: Node,
2749
+ key: string,
2750
+ index?: number,
2751
+ }>;
2752
+ type TraversalHandler<T> = (
2753
+ this: undefined, node: Node, parent: TraversalAncestors, type: T
2754
+ ) => void;
2755
+ type TraversalHandlers<T> = {
2756
+ enter?: TraversalHandler<T>,
2757
+ exit?: TraversalHandler<T>,
2758
+ };
2759
+ declare function traverse<T>(n: Node, h: TraversalHandler<T> | TraversalHandlers<T>, state?: T): void;
2760
+ declare function traverseFast<T>(n: Node, h: TraversalHandler<T>, state?: T): void;
2761
+ declare function shallowEqual<T extends object>(actual: object, expected: T): actual is T
2762
+ declare function buildMatchMemberExpression(match: string, allowPartial?: boolean): (node: Node | null | undefined) => node is MemberExpression
2763
+ declare function is<T extends Node['type']>(type: T, n: Node | null | undefined, required?: undefined): n is Extract<Node, { type: T }>
2764
+ declare function is<T extends Node['type'], P extends Extract<Node, { type: T }>>(type: T, n: Node | null | undefined, required: Partial<P>): n is P
2765
+ declare function is<P extends Node>(type: string, n: Node | null | undefined, required: Partial<P>): n is P
2766
+ declare function is(type: string, n: Node | null | undefined, required?: Partial<Node>): n is Node
2767
+ declare function isBinding(node: Node, parent: Node, grandparent?: Node): boolean
2768
+ declare function isBlockScoped(node: Node): node is FunctionDeclaration | ClassDeclaration | VariableDeclaration
2769
+ declare function isImmutable(node: object | null | undefined, opts?: object | null): node is Immutable;
2770
+ declare function isImmutable(node: Node): node is Immutable
2771
+ declare function isLet(node: Node): node is VariableDeclaration
2772
+ declare function isNode(node: object | null | undefined): node is Node
2773
+ declare function isNodesEquivalent<T extends Partial<Node>>(a: T, b: any): b is T
2774
+ declare function isNodesEquivalent(a: any, b: any): boolean
2775
+ declare function isPlaceholderType(placeholderType: Node['type'], targetType: Node['type']): boolean
2776
+ declare function isReferenced(node: Node, parent: Node, grandparent?: Node): boolean
2777
+ declare function isScope(node: Node, parent: Node): node is Scopable
2778
+ declare function isSpecifierDefault(specifier: ModuleSpecifier): boolean
2779
+ declare function isType<T extends Node['type']>(nodetype: string, targetType: T): nodetype is T
2780
+ declare function isType(nodetype: string | null | undefined, targetType: string): boolean
2781
+ declare function isValidES3Identifier(name: string): boolean
2782
+ declare function isValidIdentifier(name: string): boolean
2783
+ declare function isVar(node: Node): node is VariableDeclaration
2784
+ declare function matchesPattern(node: Node | null | undefined, match: string | ReadonlyArray<string>, allowPartial?: boolean): node is MemberExpression
2785
+ declare function validate<T extends Node, K extends keyof T>(n: Node | null | undefined, key: K, value: T[K]): void;
2786
+ declare function validate(n: Node, key: string, value: any): void;
2787
+
2788
+ type indexLegacy_d_Accessor = Accessor;
2789
+ type indexLegacy_d_Aliases = Aliases;
2790
+ type indexLegacy_d_AnyTypeAnnotation = AnyTypeAnnotation;
2791
+ type indexLegacy_d_ArgumentPlaceholder = ArgumentPlaceholder;
2792
+ type indexLegacy_d_ArrayExpression = ArrayExpression;
2793
+ type indexLegacy_d_ArrayPattern = ArrayPattern;
2794
+ type indexLegacy_d_ArrayTypeAnnotation = ArrayTypeAnnotation;
2795
+ type indexLegacy_d_ArrowFunctionExpression = ArrowFunctionExpression;
2796
+ type indexLegacy_d_AssignmentExpression = AssignmentExpression;
2797
+ type indexLegacy_d_AssignmentPattern = AssignmentPattern;
2798
+ type indexLegacy_d_AwaitExpression = AwaitExpression;
2799
+ type indexLegacy_d_BigIntLiteral = BigIntLiteral;
2800
+ type indexLegacy_d_Binary = Binary;
2801
+ type indexLegacy_d_BinaryExpression = BinaryExpression;
2802
+ type indexLegacy_d_BindExpression = BindExpression;
2803
+ type indexLegacy_d_Block = Block;
2804
+ type indexLegacy_d_BlockParent = BlockParent;
2805
+ type indexLegacy_d_BlockStatement = BlockStatement;
2806
+ type indexLegacy_d_BooleanLiteral = BooleanLiteral;
2807
+ type indexLegacy_d_BooleanLiteralTypeAnnotation = BooleanLiteralTypeAnnotation;
2808
+ type indexLegacy_d_BooleanTypeAnnotation = BooleanTypeAnnotation;
2809
+ type indexLegacy_d_BreakStatement = BreakStatement;
2810
+ type indexLegacy_d_CallExpression = CallExpression;
2811
+ type indexLegacy_d_CatchClause = CatchClause;
2812
+ type indexLegacy_d_Class = Class;
2813
+ type indexLegacy_d_ClassAccessorProperty = ClassAccessorProperty;
2814
+ type indexLegacy_d_ClassBody = ClassBody;
2815
+ type indexLegacy_d_ClassDeclaration = ClassDeclaration;
2816
+ type indexLegacy_d_ClassExpression = ClassExpression;
2817
+ type indexLegacy_d_ClassImplements = ClassImplements;
2818
+ type indexLegacy_d_ClassMethod = ClassMethod;
2819
+ type indexLegacy_d_ClassPrivateMethod = ClassPrivateMethod;
2820
+ type indexLegacy_d_ClassPrivateProperty = ClassPrivateProperty;
2821
+ type indexLegacy_d_ClassProperty = ClassProperty;
2822
+ type indexLegacy_d_Comment = Comment;
2823
+ type indexLegacy_d_CommentBlock = CommentBlock;
2824
+ type indexLegacy_d_CommentLine = CommentLine;
2825
+ type indexLegacy_d_CommentTypeShorthand = CommentTypeShorthand;
2826
+ type indexLegacy_d_CompletionStatement = CompletionStatement;
2827
+ type indexLegacy_d_Conditional = Conditional;
2828
+ type indexLegacy_d_ConditionalExpression = ConditionalExpression;
2829
+ type indexLegacy_d_ContinueStatement = ContinueStatement;
2830
+ type indexLegacy_d_DebuggerStatement = DebuggerStatement;
2831
+ type indexLegacy_d_DecimalLiteral = DecimalLiteral;
2832
+ type indexLegacy_d_Declaration = Declaration;
2833
+ type indexLegacy_d_DeclareClass = DeclareClass;
2834
+ type indexLegacy_d_DeclareExportAllDeclaration = DeclareExportAllDeclaration;
2835
+ type indexLegacy_d_DeclareExportDeclaration = DeclareExportDeclaration;
2836
+ type indexLegacy_d_DeclareFunction = DeclareFunction;
2837
+ type indexLegacy_d_DeclareInterface = DeclareInterface;
2838
+ type indexLegacy_d_DeclareModule = DeclareModule;
2839
+ type indexLegacy_d_DeclareModuleExports = DeclareModuleExports;
2840
+ type indexLegacy_d_DeclareOpaqueType = DeclareOpaqueType;
2841
+ type indexLegacy_d_DeclareTypeAlias = DeclareTypeAlias;
2842
+ type indexLegacy_d_DeclareVariable = DeclareVariable;
2843
+ type indexLegacy_d_DeclaredPredicate = DeclaredPredicate;
2844
+ type indexLegacy_d_Decorator = Decorator;
2845
+ type indexLegacy_d_Directive = Directive;
2846
+ type indexLegacy_d_DirectiveLiteral = DirectiveLiteral;
2847
+ type indexLegacy_d_DoExpression = DoExpression;
2848
+ type indexLegacy_d_DoWhileStatement = DoWhileStatement;
2849
+ type indexLegacy_d_EmptyStatement = EmptyStatement;
2850
+ type indexLegacy_d_EmptyTypeAnnotation = EmptyTypeAnnotation;
2851
+ type indexLegacy_d_EnumBody = EnumBody;
2852
+ type indexLegacy_d_EnumBooleanBody = EnumBooleanBody;
2853
+ type indexLegacy_d_EnumBooleanMember = EnumBooleanMember;
2854
+ type indexLegacy_d_EnumDeclaration = EnumDeclaration;
2855
+ type indexLegacy_d_EnumDefaultedMember = EnumDefaultedMember;
2856
+ type indexLegacy_d_EnumMember = EnumMember;
2857
+ type indexLegacy_d_EnumNumberBody = EnumNumberBody;
2858
+ type indexLegacy_d_EnumNumberMember = EnumNumberMember;
2859
+ type indexLegacy_d_EnumStringBody = EnumStringBody;
2860
+ type indexLegacy_d_EnumStringMember = EnumStringMember;
2861
+ type indexLegacy_d_EnumSymbolBody = EnumSymbolBody;
2862
+ type indexLegacy_d_ExistsTypeAnnotation = ExistsTypeAnnotation;
2863
+ type indexLegacy_d_ExportAllDeclaration = ExportAllDeclaration;
2864
+ type indexLegacy_d_ExportDeclaration = ExportDeclaration;
2865
+ type indexLegacy_d_ExportDefaultDeclaration = ExportDefaultDeclaration;
2866
+ type indexLegacy_d_ExportDefaultSpecifier = ExportDefaultSpecifier;
2867
+ type indexLegacy_d_ExportNamedDeclaration = ExportNamedDeclaration;
2868
+ type indexLegacy_d_ExportNamespaceSpecifier = ExportNamespaceSpecifier;
2869
+ type indexLegacy_d_ExportSpecifier = ExportSpecifier;
2870
+ type indexLegacy_d_Expression = Expression;
2871
+ type indexLegacy_d_ExpressionStatement = ExpressionStatement;
2872
+ type indexLegacy_d_ExpressionWrapper = ExpressionWrapper;
2873
+ type indexLegacy_d_File = File;
2874
+ type indexLegacy_d_Flow = Flow;
2875
+ type indexLegacy_d_FlowBaseAnnotation = FlowBaseAnnotation;
2876
+ type indexLegacy_d_FlowDeclaration = FlowDeclaration;
2877
+ type indexLegacy_d_FlowPredicate = FlowPredicate;
2878
+ type indexLegacy_d_FlowType = FlowType;
2879
+ type indexLegacy_d_For = For;
2880
+ type indexLegacy_d_ForInStatement = ForInStatement;
2881
+ type indexLegacy_d_ForOfStatement = ForOfStatement;
2882
+ type indexLegacy_d_ForStatement = ForStatement;
2883
+ type indexLegacy_d_ForXStatement = ForXStatement;
2884
+ type indexLegacy_d_Function = Function;
2885
+ type indexLegacy_d_FunctionDeclaration = FunctionDeclaration;
2886
+ type indexLegacy_d_FunctionExpression = FunctionExpression;
2887
+ type indexLegacy_d_FunctionParent = FunctionParent;
2888
+ type indexLegacy_d_FunctionTypeAnnotation = FunctionTypeAnnotation;
2889
+ type indexLegacy_d_FunctionTypeParam = FunctionTypeParam;
2890
+ type indexLegacy_d_GenericTypeAnnotation = GenericTypeAnnotation;
2891
+ type indexLegacy_d_Identifier = Identifier;
2892
+ type indexLegacy_d_IfStatement = IfStatement;
2893
+ type indexLegacy_d_Immutable = Immutable;
2894
+ type indexLegacy_d_Import = Import;
2895
+ type indexLegacy_d_ImportAttribute = ImportAttribute;
2896
+ type indexLegacy_d_ImportDeclaration = ImportDeclaration;
2897
+ type indexLegacy_d_ImportDefaultSpecifier = ImportDefaultSpecifier;
2898
+ type indexLegacy_d_ImportExpression = ImportExpression;
2899
+ type indexLegacy_d_ImportNamespaceSpecifier = ImportNamespaceSpecifier;
2900
+ type indexLegacy_d_ImportOrExportDeclaration = ImportOrExportDeclaration;
2901
+ type indexLegacy_d_ImportSpecifier = ImportSpecifier;
2902
+ type indexLegacy_d_IndexedAccessType = IndexedAccessType;
2903
+ type indexLegacy_d_InferredPredicate = InferredPredicate;
2904
+ type indexLegacy_d_InterfaceDeclaration = InterfaceDeclaration;
2905
+ type indexLegacy_d_InterfaceExtends = InterfaceExtends;
2906
+ type indexLegacy_d_InterfaceTypeAnnotation = InterfaceTypeAnnotation;
2907
+ type indexLegacy_d_InterpreterDirective = InterpreterDirective;
2908
+ type indexLegacy_d_IntersectionTypeAnnotation = IntersectionTypeAnnotation;
2909
+ type indexLegacy_d_JSX = JSX;
2910
+ type indexLegacy_d_JSXAttribute = JSXAttribute;
2911
+ type indexLegacy_d_JSXClosingElement = JSXClosingElement;
2912
+ type indexLegacy_d_JSXClosingFragment = JSXClosingFragment;
2913
+ type indexLegacy_d_JSXElement = JSXElement;
2914
+ type indexLegacy_d_JSXEmptyExpression = JSXEmptyExpression;
2915
+ type indexLegacy_d_JSXExpressionContainer = JSXExpressionContainer;
2916
+ type indexLegacy_d_JSXFragment = JSXFragment;
2917
+ type indexLegacy_d_JSXIdentifier = JSXIdentifier;
2918
+ type indexLegacy_d_JSXMemberExpression = JSXMemberExpression;
2919
+ type indexLegacy_d_JSXNamespacedName = JSXNamespacedName;
2920
+ type indexLegacy_d_JSXOpeningElement = JSXOpeningElement;
2921
+ type indexLegacy_d_JSXOpeningFragment = JSXOpeningFragment;
2922
+ type indexLegacy_d_JSXSpreadAttribute = JSXSpreadAttribute;
2923
+ type indexLegacy_d_JSXSpreadChild = JSXSpreadChild;
2924
+ type indexLegacy_d_JSXText = JSXText;
2925
+ type indexLegacy_d_LVal = LVal;
2926
+ type indexLegacy_d_LabeledStatement = LabeledStatement;
2927
+ type indexLegacy_d_Literal = Literal;
2928
+ type indexLegacy_d_LogicalExpression = LogicalExpression;
2929
+ type indexLegacy_d_Loop = Loop;
2930
+ type indexLegacy_d_MemberExpression = MemberExpression;
2931
+ type indexLegacy_d_MetaProperty = MetaProperty;
2932
+ type indexLegacy_d_Method = Method;
2933
+ type indexLegacy_d_Miscellaneous = Miscellaneous;
2934
+ type indexLegacy_d_MixedTypeAnnotation = MixedTypeAnnotation;
2935
+ type indexLegacy_d_ModuleDeclaration = ModuleDeclaration;
2936
+ type indexLegacy_d_ModuleExpression = ModuleExpression;
2937
+ type indexLegacy_d_ModuleSpecifier = ModuleSpecifier;
2938
+ type indexLegacy_d_NewExpression = NewExpression;
2939
+ type indexLegacy_d_Node = Node;
2940
+ type indexLegacy_d_Noop = Noop;
2941
+ type indexLegacy_d_NullLiteral = NullLiteral;
2942
+ type indexLegacy_d_NullLiteralTypeAnnotation = NullLiteralTypeAnnotation;
2943
+ type indexLegacy_d_NullableTypeAnnotation = NullableTypeAnnotation;
2944
+ type indexLegacy_d_NumberLiteral = NumberLiteral;
2945
+ type indexLegacy_d_NumberLiteralTypeAnnotation = NumberLiteralTypeAnnotation;
2946
+ type indexLegacy_d_NumberTypeAnnotation = NumberTypeAnnotation;
2947
+ type indexLegacy_d_NumericLiteral = NumericLiteral;
2948
+ type indexLegacy_d_ObjectExpression = ObjectExpression;
2949
+ type indexLegacy_d_ObjectMember = ObjectMember;
2950
+ type indexLegacy_d_ObjectMethod = ObjectMethod;
2951
+ type indexLegacy_d_ObjectPattern = ObjectPattern;
2952
+ type indexLegacy_d_ObjectProperty = ObjectProperty;
2953
+ type indexLegacy_d_ObjectTypeAnnotation = ObjectTypeAnnotation;
2954
+ type indexLegacy_d_ObjectTypeCallProperty = ObjectTypeCallProperty;
2955
+ type indexLegacy_d_ObjectTypeIndexer = ObjectTypeIndexer;
2956
+ type indexLegacy_d_ObjectTypeInternalSlot = ObjectTypeInternalSlot;
2957
+ type indexLegacy_d_ObjectTypeProperty = ObjectTypeProperty;
2958
+ type indexLegacy_d_ObjectTypeSpreadProperty = ObjectTypeSpreadProperty;
2959
+ type indexLegacy_d_OpaqueType = OpaqueType;
2960
+ type indexLegacy_d_OptionalCallExpression = OptionalCallExpression;
2961
+ type indexLegacy_d_OptionalIndexedAccessType = OptionalIndexedAccessType;
2962
+ type indexLegacy_d_OptionalMemberExpression = OptionalMemberExpression;
2963
+ type indexLegacy_d_ParenthesizedExpression = ParenthesizedExpression;
2964
+ type indexLegacy_d_Pattern = Pattern;
2965
+ type indexLegacy_d_PatternLike = PatternLike;
2966
+ type indexLegacy_d_PipelineBareFunction = PipelineBareFunction;
2967
+ type indexLegacy_d_PipelinePrimaryTopicReference = PipelinePrimaryTopicReference;
2968
+ type indexLegacy_d_PipelineTopicExpression = PipelineTopicExpression;
2969
+ type indexLegacy_d_Placeholder = Placeholder;
2970
+ type indexLegacy_d_Private = Private;
2971
+ type indexLegacy_d_PrivateName = PrivateName;
2972
+ type indexLegacy_d_Program = Program;
2973
+ type indexLegacy_d_Property = Property;
2974
+ type indexLegacy_d_Pureish = Pureish;
2975
+ type indexLegacy_d_QualifiedTypeIdentifier = QualifiedTypeIdentifier;
2976
+ type indexLegacy_d_RecordExpression = RecordExpression;
2977
+ type indexLegacy_d_RegExpLiteral = RegExpLiteral;
2978
+ type indexLegacy_d_RegexLiteral = RegexLiteral;
2979
+ type indexLegacy_d_RestElement = RestElement;
2980
+ type indexLegacy_d_RestProperty = RestProperty;
2981
+ type indexLegacy_d_ReturnStatement = ReturnStatement;
2982
+ type indexLegacy_d_Scopable = Scopable;
2983
+ type indexLegacy_d_SequenceExpression = SequenceExpression;
2984
+ type indexLegacy_d_SourceLocation = SourceLocation;
2985
+ type indexLegacy_d_SpreadElement = SpreadElement;
2986
+ type indexLegacy_d_SpreadProperty = SpreadProperty;
2987
+ type indexLegacy_d_Standardized = Standardized;
2988
+ type indexLegacy_d_Statement = Statement;
2989
+ type indexLegacy_d_StaticBlock = StaticBlock;
2990
+ type indexLegacy_d_StringLiteral = StringLiteral;
2991
+ type indexLegacy_d_StringLiteralTypeAnnotation = StringLiteralTypeAnnotation;
2992
+ type indexLegacy_d_StringTypeAnnotation = StringTypeAnnotation;
2993
+ type indexLegacy_d_Super = Super;
2994
+ type indexLegacy_d_SwitchCase = SwitchCase;
2995
+ type indexLegacy_d_SwitchStatement = SwitchStatement;
2996
+ type indexLegacy_d_SymbolTypeAnnotation = SymbolTypeAnnotation;
2997
+ type indexLegacy_d_TSAnyKeyword = TSAnyKeyword;
2998
+ type indexLegacy_d_TSArrayType = TSArrayType;
2999
+ type indexLegacy_d_TSAsExpression = TSAsExpression;
3000
+ type indexLegacy_d_TSBaseType = TSBaseType;
3001
+ type indexLegacy_d_TSBigIntKeyword = TSBigIntKeyword;
3002
+ type indexLegacy_d_TSBooleanKeyword = TSBooleanKeyword;
3003
+ type indexLegacy_d_TSCallSignatureDeclaration = TSCallSignatureDeclaration;
3004
+ type indexLegacy_d_TSConditionalType = TSConditionalType;
3005
+ type indexLegacy_d_TSConstructSignatureDeclaration = TSConstructSignatureDeclaration;
3006
+ type indexLegacy_d_TSConstructorType = TSConstructorType;
3007
+ type indexLegacy_d_TSDeclareFunction = TSDeclareFunction;
3008
+ type indexLegacy_d_TSDeclareMethod = TSDeclareMethod;
3009
+ type indexLegacy_d_TSEntityName = TSEntityName;
3010
+ type indexLegacy_d_TSEnumBody = TSEnumBody;
3011
+ type indexLegacy_d_TSEnumDeclaration = TSEnumDeclaration;
3012
+ type indexLegacy_d_TSEnumMember = TSEnumMember;
3013
+ type indexLegacy_d_TSExportAssignment = TSExportAssignment;
3014
+ type indexLegacy_d_TSExpressionWithTypeArguments = TSExpressionWithTypeArguments;
3015
+ type indexLegacy_d_TSExternalModuleReference = TSExternalModuleReference;
3016
+ type indexLegacy_d_TSFunctionType = TSFunctionType;
3017
+ type indexLegacy_d_TSImportEqualsDeclaration = TSImportEqualsDeclaration;
3018
+ type indexLegacy_d_TSImportType = TSImportType;
3019
+ type indexLegacy_d_TSIndexSignature = TSIndexSignature;
3020
+ type indexLegacy_d_TSIndexedAccessType = TSIndexedAccessType;
3021
+ type indexLegacy_d_TSInferType = TSInferType;
3022
+ type indexLegacy_d_TSInstantiationExpression = TSInstantiationExpression;
3023
+ type indexLegacy_d_TSInterfaceBody = TSInterfaceBody;
3024
+ type indexLegacy_d_TSInterfaceDeclaration = TSInterfaceDeclaration;
3025
+ type indexLegacy_d_TSIntersectionType = TSIntersectionType;
3026
+ type indexLegacy_d_TSIntrinsicKeyword = TSIntrinsicKeyword;
3027
+ type indexLegacy_d_TSLiteralType = TSLiteralType;
3028
+ type indexLegacy_d_TSMappedType = TSMappedType;
3029
+ type indexLegacy_d_TSMethodSignature = TSMethodSignature;
3030
+ type indexLegacy_d_TSModuleBlock = TSModuleBlock;
3031
+ type indexLegacy_d_TSModuleDeclaration = TSModuleDeclaration;
3032
+ type indexLegacy_d_TSNamedTupleMember = TSNamedTupleMember;
3033
+ type indexLegacy_d_TSNamespaceExportDeclaration = TSNamespaceExportDeclaration;
3034
+ type indexLegacy_d_TSNeverKeyword = TSNeverKeyword;
3035
+ type indexLegacy_d_TSNonNullExpression = TSNonNullExpression;
3036
+ type indexLegacy_d_TSNullKeyword = TSNullKeyword;
3037
+ type indexLegacy_d_TSNumberKeyword = TSNumberKeyword;
3038
+ type indexLegacy_d_TSObjectKeyword = TSObjectKeyword;
3039
+ type indexLegacy_d_TSOptionalType = TSOptionalType;
3040
+ type indexLegacy_d_TSParameterProperty = TSParameterProperty;
3041
+ type indexLegacy_d_TSParenthesizedType = TSParenthesizedType;
3042
+ type indexLegacy_d_TSPropertySignature = TSPropertySignature;
3043
+ type indexLegacy_d_TSQualifiedName = TSQualifiedName;
3044
+ type indexLegacy_d_TSRestType = TSRestType;
3045
+ type indexLegacy_d_TSSatisfiesExpression = TSSatisfiesExpression;
3046
+ type indexLegacy_d_TSStringKeyword = TSStringKeyword;
3047
+ type indexLegacy_d_TSSymbolKeyword = TSSymbolKeyword;
3048
+ type indexLegacy_d_TSTemplateLiteralType = TSTemplateLiteralType;
3049
+ type indexLegacy_d_TSThisType = TSThisType;
3050
+ type indexLegacy_d_TSTupleType = TSTupleType;
3051
+ type indexLegacy_d_TSType = TSType;
3052
+ type indexLegacy_d_TSTypeAliasDeclaration = TSTypeAliasDeclaration;
3053
+ type indexLegacy_d_TSTypeAnnotation = TSTypeAnnotation;
3054
+ type indexLegacy_d_TSTypeAssertion = TSTypeAssertion;
3055
+ type indexLegacy_d_TSTypeElement = TSTypeElement;
3056
+ type indexLegacy_d_TSTypeLiteral = TSTypeLiteral;
3057
+ type indexLegacy_d_TSTypeOperator = TSTypeOperator;
3058
+ type indexLegacy_d_TSTypeParameter = TSTypeParameter;
3059
+ type indexLegacy_d_TSTypeParameterDeclaration = TSTypeParameterDeclaration;
3060
+ type indexLegacy_d_TSTypeParameterInstantiation = TSTypeParameterInstantiation;
3061
+ type indexLegacy_d_TSTypePredicate = TSTypePredicate;
3062
+ type indexLegacy_d_TSTypeQuery = TSTypeQuery;
3063
+ type indexLegacy_d_TSTypeReference = TSTypeReference;
3064
+ type indexLegacy_d_TSUndefinedKeyword = TSUndefinedKeyword;
3065
+ type indexLegacy_d_TSUnionType = TSUnionType;
3066
+ type indexLegacy_d_TSUnknownKeyword = TSUnknownKeyword;
3067
+ type indexLegacy_d_TSVoidKeyword = TSVoidKeyword;
3068
+ type indexLegacy_d_TaggedTemplateExpression = TaggedTemplateExpression;
3069
+ type indexLegacy_d_TemplateElement = TemplateElement;
3070
+ type indexLegacy_d_TemplateLiteral = TemplateLiteral;
3071
+ type indexLegacy_d_Terminatorless = Terminatorless;
3072
+ type indexLegacy_d_ThisExpression = ThisExpression;
3073
+ type indexLegacy_d_ThisTypeAnnotation = ThisTypeAnnotation;
3074
+ type indexLegacy_d_ThrowStatement = ThrowStatement;
3075
+ type indexLegacy_d_TopicReference = TopicReference;
3076
+ type indexLegacy_d_TraversalAncestors = TraversalAncestors;
3077
+ type indexLegacy_d_TraversalHandler<T> = TraversalHandler<T>;
3078
+ type indexLegacy_d_TraversalHandlers<T> = TraversalHandlers<T>;
3079
+ type indexLegacy_d_TryStatement = TryStatement;
3080
+ type indexLegacy_d_TupleExpression = TupleExpression;
3081
+ type indexLegacy_d_TupleTypeAnnotation = TupleTypeAnnotation;
3082
+ type indexLegacy_d_TypeAlias = TypeAlias;
3083
+ type indexLegacy_d_TypeAnnotation = TypeAnnotation;
3084
+ type indexLegacy_d_TypeCastExpression = TypeCastExpression;
3085
+ type indexLegacy_d_TypeParameter = TypeParameter;
3086
+ type indexLegacy_d_TypeParameterDeclaration = TypeParameterDeclaration;
3087
+ type indexLegacy_d_TypeParameterInstantiation = TypeParameterInstantiation;
3088
+ type indexLegacy_d_TypeScript = TypeScript;
3089
+ type indexLegacy_d_TypeofTypeAnnotation = TypeofTypeAnnotation;
3090
+ type indexLegacy_d_UnaryExpression = UnaryExpression;
3091
+ type indexLegacy_d_UnaryLike = UnaryLike;
3092
+ type indexLegacy_d_UnionTypeAnnotation = UnionTypeAnnotation;
3093
+ type indexLegacy_d_UpdateExpression = UpdateExpression;
3094
+ type indexLegacy_d_UserWhitespacable = UserWhitespacable;
3095
+ type indexLegacy_d_V8IntrinsicIdentifier = V8IntrinsicIdentifier;
3096
+ type indexLegacy_d_VariableDeclaration = VariableDeclaration;
3097
+ type indexLegacy_d_VariableDeclarator = VariableDeclarator;
3098
+ type indexLegacy_d_Variance = Variance;
3099
+ type indexLegacy_d_VoidTypeAnnotation = VoidTypeAnnotation;
3100
+ type indexLegacy_d_While = While;
3101
+ type indexLegacy_d_WhileStatement = WhileStatement;
3102
+ type indexLegacy_d_WithStatement = WithStatement;
3103
+ type indexLegacy_d_YieldExpression = YieldExpression;
3104
+ declare const indexLegacy_d_addComment: typeof addComment;
3105
+ declare const indexLegacy_d_addComments: typeof addComments;
3106
+ declare const indexLegacy_d_anyTypeAnnotation: typeof anyTypeAnnotation;
3107
+ declare const indexLegacy_d_appendToMemberExpression: typeof appendToMemberExpression;
3108
+ declare const indexLegacy_d_argumentPlaceholder: typeof argumentPlaceholder;
3109
+ declare const indexLegacy_d_arrayExpression: typeof arrayExpression;
3110
+ declare const indexLegacy_d_arrayPattern: typeof arrayPattern;
3111
+ declare const indexLegacy_d_arrayTypeAnnotation: typeof arrayTypeAnnotation;
3112
+ declare const indexLegacy_d_arrowFunctionExpression: typeof arrowFunctionExpression;
3113
+ declare const indexLegacy_d_assertAccessor: typeof assertAccessor;
3114
+ declare const indexLegacy_d_assertAnyTypeAnnotation: typeof assertAnyTypeAnnotation;
3115
+ declare const indexLegacy_d_assertArgumentPlaceholder: typeof assertArgumentPlaceholder;
3116
+ declare const indexLegacy_d_assertArrayExpression: typeof assertArrayExpression;
3117
+ declare const indexLegacy_d_assertArrayPattern: typeof assertArrayPattern;
3118
+ declare const indexLegacy_d_assertArrayTypeAnnotation: typeof assertArrayTypeAnnotation;
3119
+ declare const indexLegacy_d_assertArrowFunctionExpression: typeof assertArrowFunctionExpression;
3120
+ declare const indexLegacy_d_assertAssignmentExpression: typeof assertAssignmentExpression;
3121
+ declare const indexLegacy_d_assertAssignmentPattern: typeof assertAssignmentPattern;
3122
+ declare const indexLegacy_d_assertAwaitExpression: typeof assertAwaitExpression;
3123
+ declare const indexLegacy_d_assertBigIntLiteral: typeof assertBigIntLiteral;
3124
+ declare const indexLegacy_d_assertBinary: typeof assertBinary;
3125
+ declare const indexLegacy_d_assertBinaryExpression: typeof assertBinaryExpression;
3126
+ declare const indexLegacy_d_assertBindExpression: typeof assertBindExpression;
3127
+ declare const indexLegacy_d_assertBlock: typeof assertBlock;
3128
+ declare const indexLegacy_d_assertBlockParent: typeof assertBlockParent;
3129
+ declare const indexLegacy_d_assertBlockStatement: typeof assertBlockStatement;
3130
+ declare const indexLegacy_d_assertBooleanLiteral: typeof assertBooleanLiteral;
3131
+ declare const indexLegacy_d_assertBooleanLiteralTypeAnnotation: typeof assertBooleanLiteralTypeAnnotation;
3132
+ declare const indexLegacy_d_assertBooleanTypeAnnotation: typeof assertBooleanTypeAnnotation;
3133
+ declare const indexLegacy_d_assertBreakStatement: typeof assertBreakStatement;
3134
+ declare const indexLegacy_d_assertCallExpression: typeof assertCallExpression;
3135
+ declare const indexLegacy_d_assertCatchClause: typeof assertCatchClause;
3136
+ declare const indexLegacy_d_assertClass: typeof assertClass;
3137
+ declare const indexLegacy_d_assertClassAccessorProperty: typeof assertClassAccessorProperty;
3138
+ declare const indexLegacy_d_assertClassBody: typeof assertClassBody;
3139
+ declare const indexLegacy_d_assertClassDeclaration: typeof assertClassDeclaration;
3140
+ declare const indexLegacy_d_assertClassExpression: typeof assertClassExpression;
3141
+ declare const indexLegacy_d_assertClassImplements: typeof assertClassImplements;
3142
+ declare const indexLegacy_d_assertClassMethod: typeof assertClassMethod;
3143
+ declare const indexLegacy_d_assertClassPrivateMethod: typeof assertClassPrivateMethod;
3144
+ declare const indexLegacy_d_assertClassPrivateProperty: typeof assertClassPrivateProperty;
3145
+ declare const indexLegacy_d_assertClassProperty: typeof assertClassProperty;
3146
+ declare const indexLegacy_d_assertCompletionStatement: typeof assertCompletionStatement;
3147
+ declare const indexLegacy_d_assertConditional: typeof assertConditional;
3148
+ declare const indexLegacy_d_assertConditionalExpression: typeof assertConditionalExpression;
3149
+ declare const indexLegacy_d_assertContinueStatement: typeof assertContinueStatement;
3150
+ declare const indexLegacy_d_assertDebuggerStatement: typeof assertDebuggerStatement;
3151
+ declare const indexLegacy_d_assertDecimalLiteral: typeof assertDecimalLiteral;
3152
+ declare const indexLegacy_d_assertDeclaration: typeof assertDeclaration;
3153
+ declare const indexLegacy_d_assertDeclareClass: typeof assertDeclareClass;
3154
+ declare const indexLegacy_d_assertDeclareExportAllDeclaration: typeof assertDeclareExportAllDeclaration;
3155
+ declare const indexLegacy_d_assertDeclareExportDeclaration: typeof assertDeclareExportDeclaration;
3156
+ declare const indexLegacy_d_assertDeclareFunction: typeof assertDeclareFunction;
3157
+ declare const indexLegacy_d_assertDeclareInterface: typeof assertDeclareInterface;
3158
+ declare const indexLegacy_d_assertDeclareModule: typeof assertDeclareModule;
3159
+ declare const indexLegacy_d_assertDeclareModuleExports: typeof assertDeclareModuleExports;
3160
+ declare const indexLegacy_d_assertDeclareOpaqueType: typeof assertDeclareOpaqueType;
3161
+ declare const indexLegacy_d_assertDeclareTypeAlias: typeof assertDeclareTypeAlias;
3162
+ declare const indexLegacy_d_assertDeclareVariable: typeof assertDeclareVariable;
3163
+ declare const indexLegacy_d_assertDeclaredPredicate: typeof assertDeclaredPredicate;
3164
+ declare const indexLegacy_d_assertDecorator: typeof assertDecorator;
3165
+ declare const indexLegacy_d_assertDirective: typeof assertDirective;
3166
+ declare const indexLegacy_d_assertDirectiveLiteral: typeof assertDirectiveLiteral;
3167
+ declare const indexLegacy_d_assertDoExpression: typeof assertDoExpression;
3168
+ declare const indexLegacy_d_assertDoWhileStatement: typeof assertDoWhileStatement;
3169
+ declare const indexLegacy_d_assertEmptyStatement: typeof assertEmptyStatement;
3170
+ declare const indexLegacy_d_assertEmptyTypeAnnotation: typeof assertEmptyTypeAnnotation;
3171
+ declare const indexLegacy_d_assertEnumBody: typeof assertEnumBody;
3172
+ declare const indexLegacy_d_assertEnumBooleanBody: typeof assertEnumBooleanBody;
3173
+ declare const indexLegacy_d_assertEnumBooleanMember: typeof assertEnumBooleanMember;
3174
+ declare const indexLegacy_d_assertEnumDeclaration: typeof assertEnumDeclaration;
3175
+ declare const indexLegacy_d_assertEnumDefaultedMember: typeof assertEnumDefaultedMember;
3176
+ declare const indexLegacy_d_assertEnumMember: typeof assertEnumMember;
3177
+ declare const indexLegacy_d_assertEnumNumberBody: typeof assertEnumNumberBody;
3178
+ declare const indexLegacy_d_assertEnumNumberMember: typeof assertEnumNumberMember;
3179
+ declare const indexLegacy_d_assertEnumStringBody: typeof assertEnumStringBody;
3180
+ declare const indexLegacy_d_assertEnumStringMember: typeof assertEnumStringMember;
3181
+ declare const indexLegacy_d_assertEnumSymbolBody: typeof assertEnumSymbolBody;
3182
+ declare const indexLegacy_d_assertExistsTypeAnnotation: typeof assertExistsTypeAnnotation;
3183
+ declare const indexLegacy_d_assertExportAllDeclaration: typeof assertExportAllDeclaration;
3184
+ declare const indexLegacy_d_assertExportDeclaration: typeof assertExportDeclaration;
3185
+ declare const indexLegacy_d_assertExportDefaultDeclaration: typeof assertExportDefaultDeclaration;
3186
+ declare const indexLegacy_d_assertExportDefaultSpecifier: typeof assertExportDefaultSpecifier;
3187
+ declare const indexLegacy_d_assertExportNamedDeclaration: typeof assertExportNamedDeclaration;
3188
+ declare const indexLegacy_d_assertExportNamespaceSpecifier: typeof assertExportNamespaceSpecifier;
3189
+ declare const indexLegacy_d_assertExportSpecifier: typeof assertExportSpecifier;
3190
+ declare const indexLegacy_d_assertExpression: typeof assertExpression;
3191
+ declare const indexLegacy_d_assertExpressionStatement: typeof assertExpressionStatement;
3192
+ declare const indexLegacy_d_assertExpressionWrapper: typeof assertExpressionWrapper;
3193
+ declare const indexLegacy_d_assertFile: typeof assertFile;
3194
+ declare const indexLegacy_d_assertFlow: typeof assertFlow;
3195
+ declare const indexLegacy_d_assertFlowBaseAnnotation: typeof assertFlowBaseAnnotation;
3196
+ declare const indexLegacy_d_assertFlowDeclaration: typeof assertFlowDeclaration;
3197
+ declare const indexLegacy_d_assertFlowPredicate: typeof assertFlowPredicate;
3198
+ declare const indexLegacy_d_assertFlowType: typeof assertFlowType;
3199
+ declare const indexLegacy_d_assertFor: typeof assertFor;
3200
+ declare const indexLegacy_d_assertForInStatement: typeof assertForInStatement;
3201
+ declare const indexLegacy_d_assertForOfStatement: typeof assertForOfStatement;
3202
+ declare const indexLegacy_d_assertForStatement: typeof assertForStatement;
3203
+ declare const indexLegacy_d_assertForXStatement: typeof assertForXStatement;
3204
+ declare const indexLegacy_d_assertFunction: typeof assertFunction;
3205
+ declare const indexLegacy_d_assertFunctionDeclaration: typeof assertFunctionDeclaration;
3206
+ declare const indexLegacy_d_assertFunctionExpression: typeof assertFunctionExpression;
3207
+ declare const indexLegacy_d_assertFunctionParent: typeof assertFunctionParent;
3208
+ declare const indexLegacy_d_assertFunctionTypeAnnotation: typeof assertFunctionTypeAnnotation;
3209
+ declare const indexLegacy_d_assertFunctionTypeParam: typeof assertFunctionTypeParam;
3210
+ declare const indexLegacy_d_assertGenericTypeAnnotation: typeof assertGenericTypeAnnotation;
3211
+ declare const indexLegacy_d_assertIdentifier: typeof assertIdentifier;
3212
+ declare const indexLegacy_d_assertIfStatement: typeof assertIfStatement;
3213
+ declare const indexLegacy_d_assertImmutable: typeof assertImmutable;
3214
+ declare const indexLegacy_d_assertImport: typeof assertImport;
3215
+ declare const indexLegacy_d_assertImportAttribute: typeof assertImportAttribute;
3216
+ declare const indexLegacy_d_assertImportDeclaration: typeof assertImportDeclaration;
3217
+ declare const indexLegacy_d_assertImportDefaultSpecifier: typeof assertImportDefaultSpecifier;
3218
+ declare const indexLegacy_d_assertImportExpression: typeof assertImportExpression;
3219
+ declare const indexLegacy_d_assertImportNamespaceSpecifier: typeof assertImportNamespaceSpecifier;
3220
+ declare const indexLegacy_d_assertImportOrExportDeclaration: typeof assertImportOrExportDeclaration;
3221
+ declare const indexLegacy_d_assertImportSpecifier: typeof assertImportSpecifier;
3222
+ declare const indexLegacy_d_assertIndexedAccessType: typeof assertIndexedAccessType;
3223
+ declare const indexLegacy_d_assertInferredPredicate: typeof assertInferredPredicate;
3224
+ declare const indexLegacy_d_assertInterfaceDeclaration: typeof assertInterfaceDeclaration;
3225
+ declare const indexLegacy_d_assertInterfaceExtends: typeof assertInterfaceExtends;
3226
+ declare const indexLegacy_d_assertInterfaceTypeAnnotation: typeof assertInterfaceTypeAnnotation;
3227
+ declare const indexLegacy_d_assertInterpreterDirective: typeof assertInterpreterDirective;
3228
+ declare const indexLegacy_d_assertIntersectionTypeAnnotation: typeof assertIntersectionTypeAnnotation;
3229
+ declare const indexLegacy_d_assertJSX: typeof assertJSX;
3230
+ declare const indexLegacy_d_assertJSXAttribute: typeof assertJSXAttribute;
3231
+ declare const indexLegacy_d_assertJSXClosingElement: typeof assertJSXClosingElement;
3232
+ declare const indexLegacy_d_assertJSXClosingFragment: typeof assertJSXClosingFragment;
3233
+ declare const indexLegacy_d_assertJSXElement: typeof assertJSXElement;
3234
+ declare const indexLegacy_d_assertJSXEmptyExpression: typeof assertJSXEmptyExpression;
3235
+ declare const indexLegacy_d_assertJSXExpressionContainer: typeof assertJSXExpressionContainer;
3236
+ declare const indexLegacy_d_assertJSXFragment: typeof assertJSXFragment;
3237
+ declare const indexLegacy_d_assertJSXIdentifier: typeof assertJSXIdentifier;
3238
+ declare const indexLegacy_d_assertJSXMemberExpression: typeof assertJSXMemberExpression;
3239
+ declare const indexLegacy_d_assertJSXNamespacedName: typeof assertJSXNamespacedName;
3240
+ declare const indexLegacy_d_assertJSXOpeningElement: typeof assertJSXOpeningElement;
3241
+ declare const indexLegacy_d_assertJSXOpeningFragment: typeof assertJSXOpeningFragment;
3242
+ declare const indexLegacy_d_assertJSXSpreadAttribute: typeof assertJSXSpreadAttribute;
3243
+ declare const indexLegacy_d_assertJSXSpreadChild: typeof assertJSXSpreadChild;
3244
+ declare const indexLegacy_d_assertJSXText: typeof assertJSXText;
3245
+ declare const indexLegacy_d_assertLVal: typeof assertLVal;
3246
+ declare const indexLegacy_d_assertLabeledStatement: typeof assertLabeledStatement;
3247
+ declare const indexLegacy_d_assertLiteral: typeof assertLiteral;
3248
+ declare const indexLegacy_d_assertLogicalExpression: typeof assertLogicalExpression;
3249
+ declare const indexLegacy_d_assertLoop: typeof assertLoop;
3250
+ declare const indexLegacy_d_assertMemberExpression: typeof assertMemberExpression;
3251
+ declare const indexLegacy_d_assertMetaProperty: typeof assertMetaProperty;
3252
+ declare const indexLegacy_d_assertMethod: typeof assertMethod;
3253
+ declare const indexLegacy_d_assertMiscellaneous: typeof assertMiscellaneous;
3254
+ declare const indexLegacy_d_assertMixedTypeAnnotation: typeof assertMixedTypeAnnotation;
3255
+ declare const indexLegacy_d_assertModuleDeclaration: typeof assertModuleDeclaration;
3256
+ declare const indexLegacy_d_assertModuleExpression: typeof assertModuleExpression;
3257
+ declare const indexLegacy_d_assertModuleSpecifier: typeof assertModuleSpecifier;
3258
+ declare const indexLegacy_d_assertNewExpression: typeof assertNewExpression;
3259
+ declare const indexLegacy_d_assertNode: typeof assertNode;
3260
+ declare const indexLegacy_d_assertNoop: typeof assertNoop;
3261
+ declare const indexLegacy_d_assertNullLiteral: typeof assertNullLiteral;
3262
+ declare const indexLegacy_d_assertNullLiteralTypeAnnotation: typeof assertNullLiteralTypeAnnotation;
3263
+ declare const indexLegacy_d_assertNullableTypeAnnotation: typeof assertNullableTypeAnnotation;
3264
+ declare const indexLegacy_d_assertNumberLiteral: typeof assertNumberLiteral;
3265
+ declare const indexLegacy_d_assertNumberLiteralTypeAnnotation: typeof assertNumberLiteralTypeAnnotation;
3266
+ declare const indexLegacy_d_assertNumberTypeAnnotation: typeof assertNumberTypeAnnotation;
3267
+ declare const indexLegacy_d_assertNumericLiteral: typeof assertNumericLiteral;
3268
+ declare const indexLegacy_d_assertObjectExpression: typeof assertObjectExpression;
3269
+ declare const indexLegacy_d_assertObjectMember: typeof assertObjectMember;
3270
+ declare const indexLegacy_d_assertObjectMethod: typeof assertObjectMethod;
3271
+ declare const indexLegacy_d_assertObjectPattern: typeof assertObjectPattern;
3272
+ declare const indexLegacy_d_assertObjectProperty: typeof assertObjectProperty;
3273
+ declare const indexLegacy_d_assertObjectTypeAnnotation: typeof assertObjectTypeAnnotation;
3274
+ declare const indexLegacy_d_assertObjectTypeCallProperty: typeof assertObjectTypeCallProperty;
3275
+ declare const indexLegacy_d_assertObjectTypeIndexer: typeof assertObjectTypeIndexer;
3276
+ declare const indexLegacy_d_assertObjectTypeInternalSlot: typeof assertObjectTypeInternalSlot;
3277
+ declare const indexLegacy_d_assertObjectTypeProperty: typeof assertObjectTypeProperty;
3278
+ declare const indexLegacy_d_assertObjectTypeSpreadProperty: typeof assertObjectTypeSpreadProperty;
3279
+ declare const indexLegacy_d_assertOpaqueType: typeof assertOpaqueType;
3280
+ declare const indexLegacy_d_assertOptionalCallExpression: typeof assertOptionalCallExpression;
3281
+ declare const indexLegacy_d_assertOptionalIndexedAccessType: typeof assertOptionalIndexedAccessType;
3282
+ declare const indexLegacy_d_assertOptionalMemberExpression: typeof assertOptionalMemberExpression;
3283
+ declare const indexLegacy_d_assertParenthesizedExpression: typeof assertParenthesizedExpression;
3284
+ declare const indexLegacy_d_assertPattern: typeof assertPattern;
3285
+ declare const indexLegacy_d_assertPatternLike: typeof assertPatternLike;
3286
+ declare const indexLegacy_d_assertPipelineBareFunction: typeof assertPipelineBareFunction;
3287
+ declare const indexLegacy_d_assertPipelinePrimaryTopicReference: typeof assertPipelinePrimaryTopicReference;
3288
+ declare const indexLegacy_d_assertPipelineTopicExpression: typeof assertPipelineTopicExpression;
3289
+ declare const indexLegacy_d_assertPlaceholder: typeof assertPlaceholder;
3290
+ declare const indexLegacy_d_assertPrivate: typeof assertPrivate;
3291
+ declare const indexLegacy_d_assertPrivateName: typeof assertPrivateName;
3292
+ declare const indexLegacy_d_assertProgram: typeof assertProgram;
3293
+ declare const indexLegacy_d_assertProperty: typeof assertProperty;
3294
+ declare const indexLegacy_d_assertPureish: typeof assertPureish;
3295
+ declare const indexLegacy_d_assertQualifiedTypeIdentifier: typeof assertQualifiedTypeIdentifier;
3296
+ declare const indexLegacy_d_assertRecordExpression: typeof assertRecordExpression;
3297
+ declare const indexLegacy_d_assertRegExpLiteral: typeof assertRegExpLiteral;
3298
+ declare const indexLegacy_d_assertRegexLiteral: typeof assertRegexLiteral;
3299
+ declare const indexLegacy_d_assertRestElement: typeof assertRestElement;
3300
+ declare const indexLegacy_d_assertRestProperty: typeof assertRestProperty;
3301
+ declare const indexLegacy_d_assertReturnStatement: typeof assertReturnStatement;
3302
+ declare const indexLegacy_d_assertScopable: typeof assertScopable;
3303
+ declare const indexLegacy_d_assertSequenceExpression: typeof assertSequenceExpression;
3304
+ declare const indexLegacy_d_assertSpreadElement: typeof assertSpreadElement;
3305
+ declare const indexLegacy_d_assertSpreadProperty: typeof assertSpreadProperty;
3306
+ declare const indexLegacy_d_assertStandardized: typeof assertStandardized;
3307
+ declare const indexLegacy_d_assertStatement: typeof assertStatement;
3308
+ declare const indexLegacy_d_assertStaticBlock: typeof assertStaticBlock;
3309
+ declare const indexLegacy_d_assertStringLiteral: typeof assertStringLiteral;
3310
+ declare const indexLegacy_d_assertStringLiteralTypeAnnotation: typeof assertStringLiteralTypeAnnotation;
3311
+ declare const indexLegacy_d_assertStringTypeAnnotation: typeof assertStringTypeAnnotation;
3312
+ declare const indexLegacy_d_assertSuper: typeof assertSuper;
3313
+ declare const indexLegacy_d_assertSwitchCase: typeof assertSwitchCase;
3314
+ declare const indexLegacy_d_assertSwitchStatement: typeof assertSwitchStatement;
3315
+ declare const indexLegacy_d_assertSymbolTypeAnnotation: typeof assertSymbolTypeAnnotation;
3316
+ declare const indexLegacy_d_assertTSAnyKeyword: typeof assertTSAnyKeyword;
3317
+ declare const indexLegacy_d_assertTSArrayType: typeof assertTSArrayType;
3318
+ declare const indexLegacy_d_assertTSAsExpression: typeof assertTSAsExpression;
3319
+ declare const indexLegacy_d_assertTSBaseType: typeof assertTSBaseType;
3320
+ declare const indexLegacy_d_assertTSBigIntKeyword: typeof assertTSBigIntKeyword;
3321
+ declare const indexLegacy_d_assertTSBooleanKeyword: typeof assertTSBooleanKeyword;
3322
+ declare const indexLegacy_d_assertTSCallSignatureDeclaration: typeof assertTSCallSignatureDeclaration;
3323
+ declare const indexLegacy_d_assertTSConditionalType: typeof assertTSConditionalType;
3324
+ declare const indexLegacy_d_assertTSConstructSignatureDeclaration: typeof assertTSConstructSignatureDeclaration;
3325
+ declare const indexLegacy_d_assertTSConstructorType: typeof assertTSConstructorType;
3326
+ declare const indexLegacy_d_assertTSDeclareFunction: typeof assertTSDeclareFunction;
3327
+ declare const indexLegacy_d_assertTSDeclareMethod: typeof assertTSDeclareMethod;
3328
+ declare const indexLegacy_d_assertTSEntityName: typeof assertTSEntityName;
3329
+ declare const indexLegacy_d_assertTSEnumBody: typeof assertTSEnumBody;
3330
+ declare const indexLegacy_d_assertTSEnumDeclaration: typeof assertTSEnumDeclaration;
3331
+ declare const indexLegacy_d_assertTSEnumMember: typeof assertTSEnumMember;
3332
+ declare const indexLegacy_d_assertTSExportAssignment: typeof assertTSExportAssignment;
3333
+ declare const indexLegacy_d_assertTSExpressionWithTypeArguments: typeof assertTSExpressionWithTypeArguments;
3334
+ declare const indexLegacy_d_assertTSExternalModuleReference: typeof assertTSExternalModuleReference;
3335
+ declare const indexLegacy_d_assertTSFunctionType: typeof assertTSFunctionType;
3336
+ declare const indexLegacy_d_assertTSImportEqualsDeclaration: typeof assertTSImportEqualsDeclaration;
3337
+ declare const indexLegacy_d_assertTSImportType: typeof assertTSImportType;
3338
+ declare const indexLegacy_d_assertTSIndexSignature: typeof assertTSIndexSignature;
3339
+ declare const indexLegacy_d_assertTSIndexedAccessType: typeof assertTSIndexedAccessType;
3340
+ declare const indexLegacy_d_assertTSInferType: typeof assertTSInferType;
3341
+ declare const indexLegacy_d_assertTSInstantiationExpression: typeof assertTSInstantiationExpression;
3342
+ declare const indexLegacy_d_assertTSInterfaceBody: typeof assertTSInterfaceBody;
3343
+ declare const indexLegacy_d_assertTSInterfaceDeclaration: typeof assertTSInterfaceDeclaration;
3344
+ declare const indexLegacy_d_assertTSIntersectionType: typeof assertTSIntersectionType;
3345
+ declare const indexLegacy_d_assertTSIntrinsicKeyword: typeof assertTSIntrinsicKeyword;
3346
+ declare const indexLegacy_d_assertTSLiteralType: typeof assertTSLiteralType;
3347
+ declare const indexLegacy_d_assertTSMappedType: typeof assertTSMappedType;
3348
+ declare const indexLegacy_d_assertTSMethodSignature: typeof assertTSMethodSignature;
3349
+ declare const indexLegacy_d_assertTSModuleBlock: typeof assertTSModuleBlock;
3350
+ declare const indexLegacy_d_assertTSModuleDeclaration: typeof assertTSModuleDeclaration;
3351
+ declare const indexLegacy_d_assertTSNamedTupleMember: typeof assertTSNamedTupleMember;
3352
+ declare const indexLegacy_d_assertTSNamespaceExportDeclaration: typeof assertTSNamespaceExportDeclaration;
3353
+ declare const indexLegacy_d_assertTSNeverKeyword: typeof assertTSNeverKeyword;
3354
+ declare const indexLegacy_d_assertTSNonNullExpression: typeof assertTSNonNullExpression;
3355
+ declare const indexLegacy_d_assertTSNullKeyword: typeof assertTSNullKeyword;
3356
+ declare const indexLegacy_d_assertTSNumberKeyword: typeof assertTSNumberKeyword;
3357
+ declare const indexLegacy_d_assertTSObjectKeyword: typeof assertTSObjectKeyword;
3358
+ declare const indexLegacy_d_assertTSOptionalType: typeof assertTSOptionalType;
3359
+ declare const indexLegacy_d_assertTSParameterProperty: typeof assertTSParameterProperty;
3360
+ declare const indexLegacy_d_assertTSParenthesizedType: typeof assertTSParenthesizedType;
3361
+ declare const indexLegacy_d_assertTSPropertySignature: typeof assertTSPropertySignature;
3362
+ declare const indexLegacy_d_assertTSQualifiedName: typeof assertTSQualifiedName;
3363
+ declare const indexLegacy_d_assertTSRestType: typeof assertTSRestType;
3364
+ declare const indexLegacy_d_assertTSSatisfiesExpression: typeof assertTSSatisfiesExpression;
3365
+ declare const indexLegacy_d_assertTSStringKeyword: typeof assertTSStringKeyword;
3366
+ declare const indexLegacy_d_assertTSSymbolKeyword: typeof assertTSSymbolKeyword;
3367
+ declare const indexLegacy_d_assertTSTemplateLiteralType: typeof assertTSTemplateLiteralType;
3368
+ declare const indexLegacy_d_assertTSThisType: typeof assertTSThisType;
3369
+ declare const indexLegacy_d_assertTSTupleType: typeof assertTSTupleType;
3370
+ declare const indexLegacy_d_assertTSType: typeof assertTSType;
3371
+ declare const indexLegacy_d_assertTSTypeAliasDeclaration: typeof assertTSTypeAliasDeclaration;
3372
+ declare const indexLegacy_d_assertTSTypeAnnotation: typeof assertTSTypeAnnotation;
3373
+ declare const indexLegacy_d_assertTSTypeAssertion: typeof assertTSTypeAssertion;
3374
+ declare const indexLegacy_d_assertTSTypeElement: typeof assertTSTypeElement;
3375
+ declare const indexLegacy_d_assertTSTypeLiteral: typeof assertTSTypeLiteral;
3376
+ declare const indexLegacy_d_assertTSTypeOperator: typeof assertTSTypeOperator;
3377
+ declare const indexLegacy_d_assertTSTypeParameter: typeof assertTSTypeParameter;
3378
+ declare const indexLegacy_d_assertTSTypeParameterDeclaration: typeof assertTSTypeParameterDeclaration;
3379
+ declare const indexLegacy_d_assertTSTypeParameterInstantiation: typeof assertTSTypeParameterInstantiation;
3380
+ declare const indexLegacy_d_assertTSTypePredicate: typeof assertTSTypePredicate;
3381
+ declare const indexLegacy_d_assertTSTypeQuery: typeof assertTSTypeQuery;
3382
+ declare const indexLegacy_d_assertTSTypeReference: typeof assertTSTypeReference;
3383
+ declare const indexLegacy_d_assertTSUndefinedKeyword: typeof assertTSUndefinedKeyword;
3384
+ declare const indexLegacy_d_assertTSUnionType: typeof assertTSUnionType;
3385
+ declare const indexLegacy_d_assertTSUnknownKeyword: typeof assertTSUnknownKeyword;
3386
+ declare const indexLegacy_d_assertTSVoidKeyword: typeof assertTSVoidKeyword;
3387
+ declare const indexLegacy_d_assertTaggedTemplateExpression: typeof assertTaggedTemplateExpression;
3388
+ declare const indexLegacy_d_assertTemplateElement: typeof assertTemplateElement;
3389
+ declare const indexLegacy_d_assertTemplateLiteral: typeof assertTemplateLiteral;
3390
+ declare const indexLegacy_d_assertTerminatorless: typeof assertTerminatorless;
3391
+ declare const indexLegacy_d_assertThisExpression: typeof assertThisExpression;
3392
+ declare const indexLegacy_d_assertThisTypeAnnotation: typeof assertThisTypeAnnotation;
3393
+ declare const indexLegacy_d_assertThrowStatement: typeof assertThrowStatement;
3394
+ declare const indexLegacy_d_assertTopicReference: typeof assertTopicReference;
3395
+ declare const indexLegacy_d_assertTryStatement: typeof assertTryStatement;
3396
+ declare const indexLegacy_d_assertTupleExpression: typeof assertTupleExpression;
3397
+ declare const indexLegacy_d_assertTupleTypeAnnotation: typeof assertTupleTypeAnnotation;
3398
+ declare const indexLegacy_d_assertTypeAlias: typeof assertTypeAlias;
3399
+ declare const indexLegacy_d_assertTypeAnnotation: typeof assertTypeAnnotation;
3400
+ declare const indexLegacy_d_assertTypeCastExpression: typeof assertTypeCastExpression;
3401
+ declare const indexLegacy_d_assertTypeParameter: typeof assertTypeParameter;
3402
+ declare const indexLegacy_d_assertTypeParameterDeclaration: typeof assertTypeParameterDeclaration;
3403
+ declare const indexLegacy_d_assertTypeParameterInstantiation: typeof assertTypeParameterInstantiation;
3404
+ declare const indexLegacy_d_assertTypeScript: typeof assertTypeScript;
3405
+ declare const indexLegacy_d_assertTypeofTypeAnnotation: typeof assertTypeofTypeAnnotation;
3406
+ declare const indexLegacy_d_assertUnaryExpression: typeof assertUnaryExpression;
3407
+ declare const indexLegacy_d_assertUnaryLike: typeof assertUnaryLike;
3408
+ declare const indexLegacy_d_assertUnionTypeAnnotation: typeof assertUnionTypeAnnotation;
3409
+ declare const indexLegacy_d_assertUpdateExpression: typeof assertUpdateExpression;
3410
+ declare const indexLegacy_d_assertUserWhitespacable: typeof assertUserWhitespacable;
3411
+ declare const indexLegacy_d_assertV8IntrinsicIdentifier: typeof assertV8IntrinsicIdentifier;
3412
+ declare const indexLegacy_d_assertVariableDeclaration: typeof assertVariableDeclaration;
3413
+ declare const indexLegacy_d_assertVariableDeclarator: typeof assertVariableDeclarator;
3414
+ declare const indexLegacy_d_assertVariance: typeof assertVariance;
3415
+ declare const indexLegacy_d_assertVoidTypeAnnotation: typeof assertVoidTypeAnnotation;
3416
+ declare const indexLegacy_d_assertWhile: typeof assertWhile;
3417
+ declare const indexLegacy_d_assertWhileStatement: typeof assertWhileStatement;
3418
+ declare const indexLegacy_d_assertWithStatement: typeof assertWithStatement;
3419
+ declare const indexLegacy_d_assertYieldExpression: typeof assertYieldExpression;
3420
+ declare const indexLegacy_d_assignmentExpression: typeof assignmentExpression;
3421
+ declare const indexLegacy_d_assignmentPattern: typeof assignmentPattern;
3422
+ declare const indexLegacy_d_awaitExpression: typeof awaitExpression;
3423
+ declare const indexLegacy_d_bigIntLiteral: typeof bigIntLiteral;
3424
+ declare const indexLegacy_d_binaryExpression: typeof binaryExpression;
3425
+ declare const indexLegacy_d_bindExpression: typeof bindExpression;
3426
+ declare const indexLegacy_d_blockStatement: typeof blockStatement;
3427
+ declare const indexLegacy_d_booleanLiteral: typeof booleanLiteral;
3428
+ declare const indexLegacy_d_booleanLiteralTypeAnnotation: typeof booleanLiteralTypeAnnotation;
3429
+ declare const indexLegacy_d_booleanTypeAnnotation: typeof booleanTypeAnnotation;
3430
+ declare const indexLegacy_d_breakStatement: typeof breakStatement;
3431
+ declare const indexLegacy_d_buildChildren: typeof buildChildren;
3432
+ declare const indexLegacy_d_buildMatchMemberExpression: typeof buildMatchMemberExpression;
3433
+ declare const indexLegacy_d_callExpression: typeof callExpression;
3434
+ declare const indexLegacy_d_catchClause: typeof catchClause;
3435
+ declare const indexLegacy_d_classAccessorProperty: typeof classAccessorProperty;
3436
+ declare const indexLegacy_d_classBody: typeof classBody;
3437
+ declare const indexLegacy_d_classDeclaration: typeof classDeclaration;
3438
+ declare const indexLegacy_d_classExpression: typeof classExpression;
3439
+ declare const indexLegacy_d_classImplements: typeof classImplements;
3440
+ declare const indexLegacy_d_classMethod: typeof classMethod;
3441
+ declare const indexLegacy_d_classPrivateMethod: typeof classPrivateMethod;
3442
+ declare const indexLegacy_d_classPrivateProperty: typeof classPrivateProperty;
3443
+ declare const indexLegacy_d_classProperty: typeof classProperty;
3444
+ declare const indexLegacy_d_clone: typeof clone;
3445
+ declare const indexLegacy_d_cloneDeep: typeof cloneDeep;
3446
+ declare const indexLegacy_d_cloneDeepWithoutLoc: typeof cloneDeepWithoutLoc;
3447
+ declare const indexLegacy_d_cloneNode: typeof cloneNode;
3448
+ declare const indexLegacy_d_cloneWithoutLoc: typeof cloneWithoutLoc;
3449
+ declare const indexLegacy_d_conditionalExpression: typeof conditionalExpression;
3450
+ declare const indexLegacy_d_continueStatement: typeof continueStatement;
3451
+ declare const indexLegacy_d_createFlowUnionType: typeof createFlowUnionType;
3452
+ declare const indexLegacy_d_createTypeAnnotationBasedOnTypeof: typeof createTypeAnnotationBasedOnTypeof;
3453
+ declare const indexLegacy_d_createUnionTypeAnnotation: typeof createUnionTypeAnnotation;
3454
+ declare const indexLegacy_d_debuggerStatement: typeof debuggerStatement;
3455
+ declare const indexLegacy_d_decimalLiteral: typeof decimalLiteral;
3456
+ declare const indexLegacy_d_declareClass: typeof declareClass;
3457
+ declare const indexLegacy_d_declareExportAllDeclaration: typeof declareExportAllDeclaration;
3458
+ declare const indexLegacy_d_declareExportDeclaration: typeof declareExportDeclaration;
3459
+ declare const indexLegacy_d_declareFunction: typeof declareFunction;
3460
+ declare const indexLegacy_d_declareInterface: typeof declareInterface;
3461
+ declare const indexLegacy_d_declareModule: typeof declareModule;
3462
+ declare const indexLegacy_d_declareModuleExports: typeof declareModuleExports;
3463
+ declare const indexLegacy_d_declareOpaqueType: typeof declareOpaqueType;
3464
+ declare const indexLegacy_d_declareTypeAlias: typeof declareTypeAlias;
3465
+ declare const indexLegacy_d_declareVariable: typeof declareVariable;
3466
+ declare const indexLegacy_d_declaredPredicate: typeof declaredPredicate;
3467
+ declare const indexLegacy_d_decorator: typeof decorator;
3468
+ declare const indexLegacy_d_directive: typeof directive;
3469
+ declare const indexLegacy_d_directiveLiteral: typeof directiveLiteral;
3470
+ declare const indexLegacy_d_doExpression: typeof doExpression;
3471
+ declare const indexLegacy_d_doWhileStatement: typeof doWhileStatement;
3472
+ declare const indexLegacy_d_emptyStatement: typeof emptyStatement;
3473
+ declare const indexLegacy_d_emptyTypeAnnotation: typeof emptyTypeAnnotation;
3474
+ declare const indexLegacy_d_ensureBlock: typeof ensureBlock;
3475
+ declare const indexLegacy_d_enumBooleanBody: typeof enumBooleanBody;
3476
+ declare const indexLegacy_d_enumBooleanMember: typeof enumBooleanMember;
3477
+ declare const indexLegacy_d_enumDeclaration: typeof enumDeclaration;
3478
+ declare const indexLegacy_d_enumDefaultedMember: typeof enumDefaultedMember;
3479
+ declare const indexLegacy_d_enumNumberBody: typeof enumNumberBody;
3480
+ declare const indexLegacy_d_enumNumberMember: typeof enumNumberMember;
3481
+ declare const indexLegacy_d_enumStringBody: typeof enumStringBody;
3482
+ declare const indexLegacy_d_enumStringMember: typeof enumStringMember;
3483
+ declare const indexLegacy_d_enumSymbolBody: typeof enumSymbolBody;
3484
+ declare const indexLegacy_d_existsTypeAnnotation: typeof existsTypeAnnotation;
3485
+ declare const indexLegacy_d_exportAllDeclaration: typeof exportAllDeclaration;
3486
+ declare const indexLegacy_d_exportDefaultDeclaration: typeof exportDefaultDeclaration;
3487
+ declare const indexLegacy_d_exportDefaultSpecifier: typeof exportDefaultSpecifier;
3488
+ declare const indexLegacy_d_exportNamedDeclaration: typeof exportNamedDeclaration;
3489
+ declare const indexLegacy_d_exportNamespaceSpecifier: typeof exportNamespaceSpecifier;
3490
+ declare const indexLegacy_d_exportSpecifier: typeof exportSpecifier;
3491
+ declare const indexLegacy_d_expressionStatement: typeof expressionStatement;
3492
+ declare const indexLegacy_d_file: typeof file;
3493
+ declare const indexLegacy_d_forInStatement: typeof forInStatement;
3494
+ declare const indexLegacy_d_forOfStatement: typeof forOfStatement;
3495
+ declare const indexLegacy_d_forStatement: typeof forStatement;
3496
+ declare const indexLegacy_d_functionDeclaration: typeof functionDeclaration;
3497
+ declare const indexLegacy_d_functionExpression: typeof functionExpression;
3498
+ declare const indexLegacy_d_functionTypeAnnotation: typeof functionTypeAnnotation;
3499
+ declare const indexLegacy_d_functionTypeParam: typeof functionTypeParam;
3500
+ declare const indexLegacy_d_genericTypeAnnotation: typeof genericTypeAnnotation;
3501
+ declare const indexLegacy_d_getBindingIdentifiers: typeof getBindingIdentifiers;
3502
+ declare const indexLegacy_d_getOuterBindingIdentifiers: typeof getOuterBindingIdentifiers;
3503
+ declare const indexLegacy_d_identifier: typeof identifier;
3504
+ declare const indexLegacy_d_ifStatement: typeof ifStatement;
3505
+ declare const indexLegacy_d_importAttribute: typeof importAttribute;
3506
+ declare const indexLegacy_d_importDeclaration: typeof importDeclaration;
3507
+ declare const indexLegacy_d_importDefaultSpecifier: typeof importDefaultSpecifier;
3508
+ declare const indexLegacy_d_importExpression: typeof importExpression;
3509
+ declare const indexLegacy_d_importNamespaceSpecifier: typeof importNamespaceSpecifier;
3510
+ declare const indexLegacy_d_importSpecifier: typeof importSpecifier;
3511
+ declare const indexLegacy_d_indexedAccessType: typeof indexedAccessType;
3512
+ declare const indexLegacy_d_inferredPredicate: typeof inferredPredicate;
3513
+ declare const indexLegacy_d_inheritInnerComments: typeof inheritInnerComments;
3514
+ declare const indexLegacy_d_inheritLeadingComments: typeof inheritLeadingComments;
3515
+ declare const indexLegacy_d_inheritTrailingComments: typeof inheritTrailingComments;
3516
+ declare const indexLegacy_d_inherits: typeof inherits;
3517
+ declare const indexLegacy_d_inheritsComments: typeof inheritsComments;
3518
+ declare const indexLegacy_d_interfaceDeclaration: typeof interfaceDeclaration;
3519
+ declare const indexLegacy_d_interfaceExtends: typeof interfaceExtends;
3520
+ declare const indexLegacy_d_interfaceTypeAnnotation: typeof interfaceTypeAnnotation;
3521
+ declare const indexLegacy_d_interpreterDirective: typeof interpreterDirective;
3522
+ declare const indexLegacy_d_intersectionTypeAnnotation: typeof intersectionTypeAnnotation;
3523
+ declare const indexLegacy_d_is: typeof is;
3524
+ declare const indexLegacy_d_isAccessor: typeof isAccessor;
3525
+ declare const indexLegacy_d_isAnyTypeAnnotation: typeof isAnyTypeAnnotation;
3526
+ declare const indexLegacy_d_isArgumentPlaceholder: typeof isArgumentPlaceholder;
3527
+ declare const indexLegacy_d_isArrayExpression: typeof isArrayExpression;
3528
+ declare const indexLegacy_d_isArrayPattern: typeof isArrayPattern;
3529
+ declare const indexLegacy_d_isArrayTypeAnnotation: typeof isArrayTypeAnnotation;
3530
+ declare const indexLegacy_d_isArrowFunctionExpression: typeof isArrowFunctionExpression;
3531
+ declare const indexLegacy_d_isAssignmentExpression: typeof isAssignmentExpression;
3532
+ declare const indexLegacy_d_isAssignmentPattern: typeof isAssignmentPattern;
3533
+ declare const indexLegacy_d_isAwaitExpression: typeof isAwaitExpression;
3534
+ declare const indexLegacy_d_isBigIntLiteral: typeof isBigIntLiteral;
3535
+ declare const indexLegacy_d_isBinary: typeof isBinary;
3536
+ declare const indexLegacy_d_isBinaryExpression: typeof isBinaryExpression;
3537
+ declare const indexLegacy_d_isBindExpression: typeof isBindExpression;
3538
+ declare const indexLegacy_d_isBinding: typeof isBinding;
3539
+ declare const indexLegacy_d_isBlock: typeof isBlock;
3540
+ declare const indexLegacy_d_isBlockParent: typeof isBlockParent;
3541
+ declare const indexLegacy_d_isBlockScoped: typeof isBlockScoped;
3542
+ declare const indexLegacy_d_isBlockStatement: typeof isBlockStatement;
3543
+ declare const indexLegacy_d_isBooleanLiteral: typeof isBooleanLiteral;
3544
+ declare const indexLegacy_d_isBooleanLiteralTypeAnnotation: typeof isBooleanLiteralTypeAnnotation;
3545
+ declare const indexLegacy_d_isBooleanTypeAnnotation: typeof isBooleanTypeAnnotation;
3546
+ declare const indexLegacy_d_isBreakStatement: typeof isBreakStatement;
3547
+ declare const indexLegacy_d_isCallExpression: typeof isCallExpression;
3548
+ declare const indexLegacy_d_isCatchClause: typeof isCatchClause;
3549
+ declare const indexLegacy_d_isClass: typeof isClass;
3550
+ declare const indexLegacy_d_isClassAccessorProperty: typeof isClassAccessorProperty;
3551
+ declare const indexLegacy_d_isClassBody: typeof isClassBody;
3552
+ declare const indexLegacy_d_isClassDeclaration: typeof isClassDeclaration;
3553
+ declare const indexLegacy_d_isClassExpression: typeof isClassExpression;
3554
+ declare const indexLegacy_d_isClassImplements: typeof isClassImplements;
3555
+ declare const indexLegacy_d_isClassMethod: typeof isClassMethod;
3556
+ declare const indexLegacy_d_isClassPrivateMethod: typeof isClassPrivateMethod;
3557
+ declare const indexLegacy_d_isClassPrivateProperty: typeof isClassPrivateProperty;
3558
+ declare const indexLegacy_d_isClassProperty: typeof isClassProperty;
3559
+ declare const indexLegacy_d_isCompletionStatement: typeof isCompletionStatement;
3560
+ declare const indexLegacy_d_isConditional: typeof isConditional;
3561
+ declare const indexLegacy_d_isConditionalExpression: typeof isConditionalExpression;
3562
+ declare const indexLegacy_d_isContinueStatement: typeof isContinueStatement;
3563
+ declare const indexLegacy_d_isDebuggerStatement: typeof isDebuggerStatement;
3564
+ declare const indexLegacy_d_isDecimalLiteral: typeof isDecimalLiteral;
3565
+ declare const indexLegacy_d_isDeclaration: typeof isDeclaration;
3566
+ declare const indexLegacy_d_isDeclareClass: typeof isDeclareClass;
3567
+ declare const indexLegacy_d_isDeclareExportAllDeclaration: typeof isDeclareExportAllDeclaration;
3568
+ declare const indexLegacy_d_isDeclareExportDeclaration: typeof isDeclareExportDeclaration;
3569
+ declare const indexLegacy_d_isDeclareFunction: typeof isDeclareFunction;
3570
+ declare const indexLegacy_d_isDeclareInterface: typeof isDeclareInterface;
3571
+ declare const indexLegacy_d_isDeclareModule: typeof isDeclareModule;
3572
+ declare const indexLegacy_d_isDeclareModuleExports: typeof isDeclareModuleExports;
3573
+ declare const indexLegacy_d_isDeclareOpaqueType: typeof isDeclareOpaqueType;
3574
+ declare const indexLegacy_d_isDeclareTypeAlias: typeof isDeclareTypeAlias;
3575
+ declare const indexLegacy_d_isDeclareVariable: typeof isDeclareVariable;
3576
+ declare const indexLegacy_d_isDeclaredPredicate: typeof isDeclaredPredicate;
3577
+ declare const indexLegacy_d_isDecorator: typeof isDecorator;
3578
+ declare const indexLegacy_d_isDirective: typeof isDirective;
3579
+ declare const indexLegacy_d_isDirectiveLiteral: typeof isDirectiveLiteral;
3580
+ declare const indexLegacy_d_isDoExpression: typeof isDoExpression;
3581
+ declare const indexLegacy_d_isDoWhileStatement: typeof isDoWhileStatement;
3582
+ declare const indexLegacy_d_isEmptyStatement: typeof isEmptyStatement;
3583
+ declare const indexLegacy_d_isEmptyTypeAnnotation: typeof isEmptyTypeAnnotation;
3584
+ declare const indexLegacy_d_isEnumBody: typeof isEnumBody;
3585
+ declare const indexLegacy_d_isEnumBooleanBody: typeof isEnumBooleanBody;
3586
+ declare const indexLegacy_d_isEnumBooleanMember: typeof isEnumBooleanMember;
3587
+ declare const indexLegacy_d_isEnumDeclaration: typeof isEnumDeclaration;
3588
+ declare const indexLegacy_d_isEnumDefaultedMember: typeof isEnumDefaultedMember;
3589
+ declare const indexLegacy_d_isEnumMember: typeof isEnumMember;
3590
+ declare const indexLegacy_d_isEnumNumberBody: typeof isEnumNumberBody;
3591
+ declare const indexLegacy_d_isEnumNumberMember: typeof isEnumNumberMember;
3592
+ declare const indexLegacy_d_isEnumStringBody: typeof isEnumStringBody;
3593
+ declare const indexLegacy_d_isEnumStringMember: typeof isEnumStringMember;
3594
+ declare const indexLegacy_d_isEnumSymbolBody: typeof isEnumSymbolBody;
3595
+ declare const indexLegacy_d_isExistsTypeAnnotation: typeof isExistsTypeAnnotation;
3596
+ declare const indexLegacy_d_isExportAllDeclaration: typeof isExportAllDeclaration;
3597
+ declare const indexLegacy_d_isExportDeclaration: typeof isExportDeclaration;
3598
+ declare const indexLegacy_d_isExportDefaultDeclaration: typeof isExportDefaultDeclaration;
3599
+ declare const indexLegacy_d_isExportDefaultSpecifier: typeof isExportDefaultSpecifier;
3600
+ declare const indexLegacy_d_isExportNamedDeclaration: typeof isExportNamedDeclaration;
3601
+ declare const indexLegacy_d_isExportNamespaceSpecifier: typeof isExportNamespaceSpecifier;
3602
+ declare const indexLegacy_d_isExportSpecifier: typeof isExportSpecifier;
3603
+ declare const indexLegacy_d_isExpression: typeof isExpression;
3604
+ declare const indexLegacy_d_isExpressionStatement: typeof isExpressionStatement;
3605
+ declare const indexLegacy_d_isExpressionWrapper: typeof isExpressionWrapper;
3606
+ declare const indexLegacy_d_isFile: typeof isFile;
3607
+ declare const indexLegacy_d_isFlow: typeof isFlow;
3608
+ declare const indexLegacy_d_isFlowBaseAnnotation: typeof isFlowBaseAnnotation;
3609
+ declare const indexLegacy_d_isFlowDeclaration: typeof isFlowDeclaration;
3610
+ declare const indexLegacy_d_isFlowPredicate: typeof isFlowPredicate;
3611
+ declare const indexLegacy_d_isFlowType: typeof isFlowType;
3612
+ declare const indexLegacy_d_isFor: typeof isFor;
3613
+ declare const indexLegacy_d_isForInStatement: typeof isForInStatement;
3614
+ declare const indexLegacy_d_isForOfStatement: typeof isForOfStatement;
3615
+ declare const indexLegacy_d_isForStatement: typeof isForStatement;
3616
+ declare const indexLegacy_d_isForXStatement: typeof isForXStatement;
3617
+ declare const indexLegacy_d_isFunction: typeof isFunction;
3618
+ declare const indexLegacy_d_isFunctionDeclaration: typeof isFunctionDeclaration;
3619
+ declare const indexLegacy_d_isFunctionExpression: typeof isFunctionExpression;
3620
+ declare const indexLegacy_d_isFunctionParent: typeof isFunctionParent;
3621
+ declare const indexLegacy_d_isFunctionTypeAnnotation: typeof isFunctionTypeAnnotation;
3622
+ declare const indexLegacy_d_isFunctionTypeParam: typeof isFunctionTypeParam;
3623
+ declare const indexLegacy_d_isGenericTypeAnnotation: typeof isGenericTypeAnnotation;
3624
+ declare const indexLegacy_d_isIdentifier: typeof isIdentifier;
3625
+ declare const indexLegacy_d_isIfStatement: typeof isIfStatement;
3626
+ declare const indexLegacy_d_isImmutable: typeof isImmutable;
3627
+ declare const indexLegacy_d_isImport: typeof isImport;
3628
+ declare const indexLegacy_d_isImportAttribute: typeof isImportAttribute;
3629
+ declare const indexLegacy_d_isImportDeclaration: typeof isImportDeclaration;
3630
+ declare const indexLegacy_d_isImportDefaultSpecifier: typeof isImportDefaultSpecifier;
3631
+ declare const indexLegacy_d_isImportExpression: typeof isImportExpression;
3632
+ declare const indexLegacy_d_isImportNamespaceSpecifier: typeof isImportNamespaceSpecifier;
3633
+ declare const indexLegacy_d_isImportOrExportDeclaration: typeof isImportOrExportDeclaration;
3634
+ declare const indexLegacy_d_isImportSpecifier: typeof isImportSpecifier;
3635
+ declare const indexLegacy_d_isIndexedAccessType: typeof isIndexedAccessType;
3636
+ declare const indexLegacy_d_isInferredPredicate: typeof isInferredPredicate;
3637
+ declare const indexLegacy_d_isInterfaceDeclaration: typeof isInterfaceDeclaration;
3638
+ declare const indexLegacy_d_isInterfaceExtends: typeof isInterfaceExtends;
3639
+ declare const indexLegacy_d_isInterfaceTypeAnnotation: typeof isInterfaceTypeAnnotation;
3640
+ declare const indexLegacy_d_isInterpreterDirective: typeof isInterpreterDirective;
3641
+ declare const indexLegacy_d_isIntersectionTypeAnnotation: typeof isIntersectionTypeAnnotation;
3642
+ declare const indexLegacy_d_isJSX: typeof isJSX;
3643
+ declare const indexLegacy_d_isJSXAttribute: typeof isJSXAttribute;
3644
+ declare const indexLegacy_d_isJSXClosingElement: typeof isJSXClosingElement;
3645
+ declare const indexLegacy_d_isJSXClosingFragment: typeof isJSXClosingFragment;
3646
+ declare const indexLegacy_d_isJSXElement: typeof isJSXElement;
3647
+ declare const indexLegacy_d_isJSXEmptyExpression: typeof isJSXEmptyExpression;
3648
+ declare const indexLegacy_d_isJSXExpressionContainer: typeof isJSXExpressionContainer;
3649
+ declare const indexLegacy_d_isJSXFragment: typeof isJSXFragment;
3650
+ declare const indexLegacy_d_isJSXIdentifier: typeof isJSXIdentifier;
3651
+ declare const indexLegacy_d_isJSXMemberExpression: typeof isJSXMemberExpression;
3652
+ declare const indexLegacy_d_isJSXNamespacedName: typeof isJSXNamespacedName;
3653
+ declare const indexLegacy_d_isJSXOpeningElement: typeof isJSXOpeningElement;
3654
+ declare const indexLegacy_d_isJSXOpeningFragment: typeof isJSXOpeningFragment;
3655
+ declare const indexLegacy_d_isJSXSpreadAttribute: typeof isJSXSpreadAttribute;
3656
+ declare const indexLegacy_d_isJSXSpreadChild: typeof isJSXSpreadChild;
3657
+ declare const indexLegacy_d_isJSXText: typeof isJSXText;
3658
+ declare const indexLegacy_d_isLVal: typeof isLVal;
3659
+ declare const indexLegacy_d_isLabeledStatement: typeof isLabeledStatement;
3660
+ declare const indexLegacy_d_isLet: typeof isLet;
3661
+ declare const indexLegacy_d_isLiteral: typeof isLiteral;
3662
+ declare const indexLegacy_d_isLogicalExpression: typeof isLogicalExpression;
3663
+ declare const indexLegacy_d_isLoop: typeof isLoop;
3664
+ declare const indexLegacy_d_isMemberExpression: typeof isMemberExpression;
3665
+ declare const indexLegacy_d_isMetaProperty: typeof isMetaProperty;
3666
+ declare const indexLegacy_d_isMethod: typeof isMethod;
3667
+ declare const indexLegacy_d_isMiscellaneous: typeof isMiscellaneous;
3668
+ declare const indexLegacy_d_isMixedTypeAnnotation: typeof isMixedTypeAnnotation;
3669
+ declare const indexLegacy_d_isModuleDeclaration: typeof isModuleDeclaration;
3670
+ declare const indexLegacy_d_isModuleExpression: typeof isModuleExpression;
3671
+ declare const indexLegacy_d_isModuleSpecifier: typeof isModuleSpecifier;
3672
+ declare const indexLegacy_d_isNewExpression: typeof isNewExpression;
3673
+ declare const indexLegacy_d_isNode: typeof isNode;
3674
+ declare const indexLegacy_d_isNodesEquivalent: typeof isNodesEquivalent;
3675
+ declare const indexLegacy_d_isNoop: typeof isNoop;
3676
+ declare const indexLegacy_d_isNullLiteral: typeof isNullLiteral;
3677
+ declare const indexLegacy_d_isNullLiteralTypeAnnotation: typeof isNullLiteralTypeAnnotation;
3678
+ declare const indexLegacy_d_isNullableTypeAnnotation: typeof isNullableTypeAnnotation;
3679
+ declare const indexLegacy_d_isNumberLiteral: typeof isNumberLiteral;
3680
+ declare const indexLegacy_d_isNumberLiteralTypeAnnotation: typeof isNumberLiteralTypeAnnotation;
3681
+ declare const indexLegacy_d_isNumberTypeAnnotation: typeof isNumberTypeAnnotation;
3682
+ declare const indexLegacy_d_isNumericLiteral: typeof isNumericLiteral;
3683
+ declare const indexLegacy_d_isObjectExpression: typeof isObjectExpression;
3684
+ declare const indexLegacy_d_isObjectMember: typeof isObjectMember;
3685
+ declare const indexLegacy_d_isObjectMethod: typeof isObjectMethod;
3686
+ declare const indexLegacy_d_isObjectPattern: typeof isObjectPattern;
3687
+ declare const indexLegacy_d_isObjectProperty: typeof isObjectProperty;
3688
+ declare const indexLegacy_d_isObjectTypeAnnotation: typeof isObjectTypeAnnotation;
3689
+ declare const indexLegacy_d_isObjectTypeCallProperty: typeof isObjectTypeCallProperty;
3690
+ declare const indexLegacy_d_isObjectTypeIndexer: typeof isObjectTypeIndexer;
3691
+ declare const indexLegacy_d_isObjectTypeInternalSlot: typeof isObjectTypeInternalSlot;
3692
+ declare const indexLegacy_d_isObjectTypeProperty: typeof isObjectTypeProperty;
3693
+ declare const indexLegacy_d_isObjectTypeSpreadProperty: typeof isObjectTypeSpreadProperty;
3694
+ declare const indexLegacy_d_isOpaqueType: typeof isOpaqueType;
3695
+ declare const indexLegacy_d_isOptionalCallExpression: typeof isOptionalCallExpression;
3696
+ declare const indexLegacy_d_isOptionalIndexedAccessType: typeof isOptionalIndexedAccessType;
3697
+ declare const indexLegacy_d_isOptionalMemberExpression: typeof isOptionalMemberExpression;
3698
+ declare const indexLegacy_d_isParenthesizedExpression: typeof isParenthesizedExpression;
3699
+ declare const indexLegacy_d_isPattern: typeof isPattern;
3700
+ declare const indexLegacy_d_isPatternLike: typeof isPatternLike;
3701
+ declare const indexLegacy_d_isPipelineBareFunction: typeof isPipelineBareFunction;
3702
+ declare const indexLegacy_d_isPipelinePrimaryTopicReference: typeof isPipelinePrimaryTopicReference;
3703
+ declare const indexLegacy_d_isPipelineTopicExpression: typeof isPipelineTopicExpression;
3704
+ declare const indexLegacy_d_isPlaceholder: typeof isPlaceholder;
3705
+ declare const indexLegacy_d_isPlaceholderType: typeof isPlaceholderType;
3706
+ declare const indexLegacy_d_isPrivate: typeof isPrivate;
3707
+ declare const indexLegacy_d_isPrivateName: typeof isPrivateName;
3708
+ declare const indexLegacy_d_isProgram: typeof isProgram;
3709
+ declare const indexLegacy_d_isProperty: typeof isProperty;
3710
+ declare const indexLegacy_d_isPureish: typeof isPureish;
3711
+ declare const indexLegacy_d_isQualifiedTypeIdentifier: typeof isQualifiedTypeIdentifier;
3712
+ declare const indexLegacy_d_isRecordExpression: typeof isRecordExpression;
3713
+ declare const indexLegacy_d_isReferenced: typeof isReferenced;
3714
+ declare const indexLegacy_d_isRegExpLiteral: typeof isRegExpLiteral;
3715
+ declare const indexLegacy_d_isRegexLiteral: typeof isRegexLiteral;
3716
+ declare const indexLegacy_d_isRestElement: typeof isRestElement;
3717
+ declare const indexLegacy_d_isRestProperty: typeof isRestProperty;
3718
+ declare const indexLegacy_d_isReturnStatement: typeof isReturnStatement;
3719
+ declare const indexLegacy_d_isScopable: typeof isScopable;
3720
+ declare const indexLegacy_d_isScope: typeof isScope;
3721
+ declare const indexLegacy_d_isSequenceExpression: typeof isSequenceExpression;
3722
+ declare const indexLegacy_d_isSpecifierDefault: typeof isSpecifierDefault;
3723
+ declare const indexLegacy_d_isSpreadElement: typeof isSpreadElement;
3724
+ declare const indexLegacy_d_isSpreadProperty: typeof isSpreadProperty;
3725
+ declare const indexLegacy_d_isStandardized: typeof isStandardized;
3726
+ declare const indexLegacy_d_isStatement: typeof isStatement;
3727
+ declare const indexLegacy_d_isStaticBlock: typeof isStaticBlock;
3728
+ declare const indexLegacy_d_isStringLiteral: typeof isStringLiteral;
3729
+ declare const indexLegacy_d_isStringLiteralTypeAnnotation: typeof isStringLiteralTypeAnnotation;
3730
+ declare const indexLegacy_d_isStringTypeAnnotation: typeof isStringTypeAnnotation;
3731
+ declare const indexLegacy_d_isSuper: typeof isSuper;
3732
+ declare const indexLegacy_d_isSwitchCase: typeof isSwitchCase;
3733
+ declare const indexLegacy_d_isSwitchStatement: typeof isSwitchStatement;
3734
+ declare const indexLegacy_d_isSymbolTypeAnnotation: typeof isSymbolTypeAnnotation;
3735
+ declare const indexLegacy_d_isTSAnyKeyword: typeof isTSAnyKeyword;
3736
+ declare const indexLegacy_d_isTSArrayType: typeof isTSArrayType;
3737
+ declare const indexLegacy_d_isTSAsExpression: typeof isTSAsExpression;
3738
+ declare const indexLegacy_d_isTSBaseType: typeof isTSBaseType;
3739
+ declare const indexLegacy_d_isTSBigIntKeyword: typeof isTSBigIntKeyword;
3740
+ declare const indexLegacy_d_isTSBooleanKeyword: typeof isTSBooleanKeyword;
3741
+ declare const indexLegacy_d_isTSCallSignatureDeclaration: typeof isTSCallSignatureDeclaration;
3742
+ declare const indexLegacy_d_isTSConditionalType: typeof isTSConditionalType;
3743
+ declare const indexLegacy_d_isTSConstructSignatureDeclaration: typeof isTSConstructSignatureDeclaration;
3744
+ declare const indexLegacy_d_isTSConstructorType: typeof isTSConstructorType;
3745
+ declare const indexLegacy_d_isTSDeclareFunction: typeof isTSDeclareFunction;
3746
+ declare const indexLegacy_d_isTSDeclareMethod: typeof isTSDeclareMethod;
3747
+ declare const indexLegacy_d_isTSEntityName: typeof isTSEntityName;
3748
+ declare const indexLegacy_d_isTSEnumBody: typeof isTSEnumBody;
3749
+ declare const indexLegacy_d_isTSEnumDeclaration: typeof isTSEnumDeclaration;
3750
+ declare const indexLegacy_d_isTSEnumMember: typeof isTSEnumMember;
3751
+ declare const indexLegacy_d_isTSExportAssignment: typeof isTSExportAssignment;
3752
+ declare const indexLegacy_d_isTSExpressionWithTypeArguments: typeof isTSExpressionWithTypeArguments;
3753
+ declare const indexLegacy_d_isTSExternalModuleReference: typeof isTSExternalModuleReference;
3754
+ declare const indexLegacy_d_isTSFunctionType: typeof isTSFunctionType;
3755
+ declare const indexLegacy_d_isTSImportEqualsDeclaration: typeof isTSImportEqualsDeclaration;
3756
+ declare const indexLegacy_d_isTSImportType: typeof isTSImportType;
3757
+ declare const indexLegacy_d_isTSIndexSignature: typeof isTSIndexSignature;
3758
+ declare const indexLegacy_d_isTSIndexedAccessType: typeof isTSIndexedAccessType;
3759
+ declare const indexLegacy_d_isTSInferType: typeof isTSInferType;
3760
+ declare const indexLegacy_d_isTSInstantiationExpression: typeof isTSInstantiationExpression;
3761
+ declare const indexLegacy_d_isTSInterfaceBody: typeof isTSInterfaceBody;
3762
+ declare const indexLegacy_d_isTSInterfaceDeclaration: typeof isTSInterfaceDeclaration;
3763
+ declare const indexLegacy_d_isTSIntersectionType: typeof isTSIntersectionType;
3764
+ declare const indexLegacy_d_isTSIntrinsicKeyword: typeof isTSIntrinsicKeyword;
3765
+ declare const indexLegacy_d_isTSLiteralType: typeof isTSLiteralType;
3766
+ declare const indexLegacy_d_isTSMappedType: typeof isTSMappedType;
3767
+ declare const indexLegacy_d_isTSMethodSignature: typeof isTSMethodSignature;
3768
+ declare const indexLegacy_d_isTSModuleBlock: typeof isTSModuleBlock;
3769
+ declare const indexLegacy_d_isTSModuleDeclaration: typeof isTSModuleDeclaration;
3770
+ declare const indexLegacy_d_isTSNamedTupleMember: typeof isTSNamedTupleMember;
3771
+ declare const indexLegacy_d_isTSNamespaceExportDeclaration: typeof isTSNamespaceExportDeclaration;
3772
+ declare const indexLegacy_d_isTSNeverKeyword: typeof isTSNeverKeyword;
3773
+ declare const indexLegacy_d_isTSNonNullExpression: typeof isTSNonNullExpression;
3774
+ declare const indexLegacy_d_isTSNullKeyword: typeof isTSNullKeyword;
3775
+ declare const indexLegacy_d_isTSNumberKeyword: typeof isTSNumberKeyword;
3776
+ declare const indexLegacy_d_isTSObjectKeyword: typeof isTSObjectKeyword;
3777
+ declare const indexLegacy_d_isTSOptionalType: typeof isTSOptionalType;
3778
+ declare const indexLegacy_d_isTSParameterProperty: typeof isTSParameterProperty;
3779
+ declare const indexLegacy_d_isTSParenthesizedType: typeof isTSParenthesizedType;
3780
+ declare const indexLegacy_d_isTSPropertySignature: typeof isTSPropertySignature;
3781
+ declare const indexLegacy_d_isTSQualifiedName: typeof isTSQualifiedName;
3782
+ declare const indexLegacy_d_isTSRestType: typeof isTSRestType;
3783
+ declare const indexLegacy_d_isTSSatisfiesExpression: typeof isTSSatisfiesExpression;
3784
+ declare const indexLegacy_d_isTSStringKeyword: typeof isTSStringKeyword;
3785
+ declare const indexLegacy_d_isTSSymbolKeyword: typeof isTSSymbolKeyword;
3786
+ declare const indexLegacy_d_isTSTemplateLiteralType: typeof isTSTemplateLiteralType;
3787
+ declare const indexLegacy_d_isTSThisType: typeof isTSThisType;
3788
+ declare const indexLegacy_d_isTSTupleType: typeof isTSTupleType;
3789
+ declare const indexLegacy_d_isTSType: typeof isTSType;
3790
+ declare const indexLegacy_d_isTSTypeAliasDeclaration: typeof isTSTypeAliasDeclaration;
3791
+ declare const indexLegacy_d_isTSTypeAnnotation: typeof isTSTypeAnnotation;
3792
+ declare const indexLegacy_d_isTSTypeAssertion: typeof isTSTypeAssertion;
3793
+ declare const indexLegacy_d_isTSTypeElement: typeof isTSTypeElement;
3794
+ declare const indexLegacy_d_isTSTypeLiteral: typeof isTSTypeLiteral;
3795
+ declare const indexLegacy_d_isTSTypeOperator: typeof isTSTypeOperator;
3796
+ declare const indexLegacy_d_isTSTypeParameter: typeof isTSTypeParameter;
3797
+ declare const indexLegacy_d_isTSTypeParameterDeclaration: typeof isTSTypeParameterDeclaration;
3798
+ declare const indexLegacy_d_isTSTypeParameterInstantiation: typeof isTSTypeParameterInstantiation;
3799
+ declare const indexLegacy_d_isTSTypePredicate: typeof isTSTypePredicate;
3800
+ declare const indexLegacy_d_isTSTypeQuery: typeof isTSTypeQuery;
3801
+ declare const indexLegacy_d_isTSTypeReference: typeof isTSTypeReference;
3802
+ declare const indexLegacy_d_isTSUndefinedKeyword: typeof isTSUndefinedKeyword;
3803
+ declare const indexLegacy_d_isTSUnionType: typeof isTSUnionType;
3804
+ declare const indexLegacy_d_isTSUnknownKeyword: typeof isTSUnknownKeyword;
3805
+ declare const indexLegacy_d_isTSVoidKeyword: typeof isTSVoidKeyword;
3806
+ declare const indexLegacy_d_isTaggedTemplateExpression: typeof isTaggedTemplateExpression;
3807
+ declare const indexLegacy_d_isTemplateElement: typeof isTemplateElement;
3808
+ declare const indexLegacy_d_isTemplateLiteral: typeof isTemplateLiteral;
3809
+ declare const indexLegacy_d_isTerminatorless: typeof isTerminatorless;
3810
+ declare const indexLegacy_d_isThisExpression: typeof isThisExpression;
3811
+ declare const indexLegacy_d_isThisTypeAnnotation: typeof isThisTypeAnnotation;
3812
+ declare const indexLegacy_d_isThrowStatement: typeof isThrowStatement;
3813
+ declare const indexLegacy_d_isTopicReference: typeof isTopicReference;
3814
+ declare const indexLegacy_d_isTryStatement: typeof isTryStatement;
3815
+ declare const indexLegacy_d_isTupleExpression: typeof isTupleExpression;
3816
+ declare const indexLegacy_d_isTupleTypeAnnotation: typeof isTupleTypeAnnotation;
3817
+ declare const indexLegacy_d_isType: typeof isType;
3818
+ declare const indexLegacy_d_isTypeAlias: typeof isTypeAlias;
3819
+ declare const indexLegacy_d_isTypeAnnotation: typeof isTypeAnnotation;
3820
+ declare const indexLegacy_d_isTypeCastExpression: typeof isTypeCastExpression;
3821
+ declare const indexLegacy_d_isTypeParameter: typeof isTypeParameter;
3822
+ declare const indexLegacy_d_isTypeParameterDeclaration: typeof isTypeParameterDeclaration;
3823
+ declare const indexLegacy_d_isTypeParameterInstantiation: typeof isTypeParameterInstantiation;
3824
+ declare const indexLegacy_d_isTypeScript: typeof isTypeScript;
3825
+ declare const indexLegacy_d_isTypeofTypeAnnotation: typeof isTypeofTypeAnnotation;
3826
+ declare const indexLegacy_d_isUnaryExpression: typeof isUnaryExpression;
3827
+ declare const indexLegacy_d_isUnaryLike: typeof isUnaryLike;
3828
+ declare const indexLegacy_d_isUnionTypeAnnotation: typeof isUnionTypeAnnotation;
3829
+ declare const indexLegacy_d_isUpdateExpression: typeof isUpdateExpression;
3830
+ declare const indexLegacy_d_isUserWhitespacable: typeof isUserWhitespacable;
3831
+ declare const indexLegacy_d_isV8IntrinsicIdentifier: typeof isV8IntrinsicIdentifier;
3832
+ declare const indexLegacy_d_isValidES3Identifier: typeof isValidES3Identifier;
3833
+ declare const indexLegacy_d_isValidIdentifier: typeof isValidIdentifier;
3834
+ declare const indexLegacy_d_isVar: typeof isVar;
3835
+ declare const indexLegacy_d_isVariableDeclaration: typeof isVariableDeclaration;
3836
+ declare const indexLegacy_d_isVariableDeclarator: typeof isVariableDeclarator;
3837
+ declare const indexLegacy_d_isVariance: typeof isVariance;
3838
+ declare const indexLegacy_d_isVoidTypeAnnotation: typeof isVoidTypeAnnotation;
3839
+ declare const indexLegacy_d_isWhile: typeof isWhile;
3840
+ declare const indexLegacy_d_isWhileStatement: typeof isWhileStatement;
3841
+ declare const indexLegacy_d_isWithStatement: typeof isWithStatement;
3842
+ declare const indexLegacy_d_isYieldExpression: typeof isYieldExpression;
3843
+ declare const indexLegacy_d_jsxAttribute: typeof jsxAttribute;
3844
+ declare const indexLegacy_d_jsxClosingElement: typeof jsxClosingElement;
3845
+ declare const indexLegacy_d_jsxClosingFragment: typeof jsxClosingFragment;
3846
+ declare const indexLegacy_d_jsxElement: typeof jsxElement;
3847
+ declare const indexLegacy_d_jsxEmptyExpression: typeof jsxEmptyExpression;
3848
+ declare const indexLegacy_d_jsxExpressionContainer: typeof jsxExpressionContainer;
3849
+ declare const indexLegacy_d_jsxFragment: typeof jsxFragment;
3850
+ declare const indexLegacy_d_jsxIdentifier: typeof jsxIdentifier;
3851
+ declare const indexLegacy_d_jsxMemberExpression: typeof jsxMemberExpression;
3852
+ declare const indexLegacy_d_jsxNamespacedName: typeof jsxNamespacedName;
3853
+ declare const indexLegacy_d_jsxOpeningElement: typeof jsxOpeningElement;
3854
+ declare const indexLegacy_d_jsxOpeningFragment: typeof jsxOpeningFragment;
3855
+ declare const indexLegacy_d_jsxSpreadAttribute: typeof jsxSpreadAttribute;
3856
+ declare const indexLegacy_d_jsxSpreadChild: typeof jsxSpreadChild;
3857
+ declare const indexLegacy_d_jsxText: typeof jsxText;
3858
+ declare const indexLegacy_d_labeledStatement: typeof labeledStatement;
3859
+ declare const indexLegacy_d_logicalExpression: typeof logicalExpression;
3860
+ declare const indexLegacy_d_matchesPattern: typeof matchesPattern;
3861
+ declare const indexLegacy_d_memberExpression: typeof memberExpression;
3862
+ declare const indexLegacy_d_metaProperty: typeof metaProperty;
3863
+ declare const indexLegacy_d_mixedTypeAnnotation: typeof mixedTypeAnnotation;
3864
+ declare const indexLegacy_d_moduleExpression: typeof moduleExpression;
3865
+ declare const indexLegacy_d_newExpression: typeof newExpression;
3866
+ declare const indexLegacy_d_noop: typeof noop;
3867
+ declare const indexLegacy_d_nullLiteral: typeof nullLiteral;
3868
+ declare const indexLegacy_d_nullLiteralTypeAnnotation: typeof nullLiteralTypeAnnotation;
3869
+ declare const indexLegacy_d_nullableTypeAnnotation: typeof nullableTypeAnnotation;
3870
+ declare const indexLegacy_d_numberLiteralTypeAnnotation: typeof numberLiteralTypeAnnotation;
3871
+ declare const indexLegacy_d_numberTypeAnnotation: typeof numberTypeAnnotation;
3872
+ declare const indexLegacy_d_numericLiteral: typeof numericLiteral;
3873
+ declare const indexLegacy_d_objectExpression: typeof objectExpression;
3874
+ declare const indexLegacy_d_objectMethod: typeof objectMethod;
3875
+ declare const indexLegacy_d_objectPattern: typeof objectPattern;
3876
+ declare const indexLegacy_d_objectProperty: typeof objectProperty;
3877
+ declare const indexLegacy_d_objectTypeAnnotation: typeof objectTypeAnnotation;
3878
+ declare const indexLegacy_d_objectTypeCallProperty: typeof objectTypeCallProperty;
3879
+ declare const indexLegacy_d_objectTypeIndexer: typeof objectTypeIndexer;
3880
+ declare const indexLegacy_d_objectTypeInternalSlot: typeof objectTypeInternalSlot;
3881
+ declare const indexLegacy_d_objectTypeProperty: typeof objectTypeProperty;
3882
+ declare const indexLegacy_d_objectTypeSpreadProperty: typeof objectTypeSpreadProperty;
3883
+ declare const indexLegacy_d_opaqueType: typeof opaqueType;
3884
+ declare const indexLegacy_d_optionalCallExpression: typeof optionalCallExpression;
3885
+ declare const indexLegacy_d_optionalIndexedAccessType: typeof optionalIndexedAccessType;
3886
+ declare const indexLegacy_d_optionalMemberExpression: typeof optionalMemberExpression;
3887
+ declare const indexLegacy_d_parenthesizedExpression: typeof parenthesizedExpression;
3888
+ declare const indexLegacy_d_pipelineBareFunction: typeof pipelineBareFunction;
3889
+ declare const indexLegacy_d_pipelinePrimaryTopicReference: typeof pipelinePrimaryTopicReference;
3890
+ declare const indexLegacy_d_pipelineTopicExpression: typeof pipelineTopicExpression;
3891
+ declare const indexLegacy_d_placeholder: typeof placeholder;
3892
+ declare const indexLegacy_d_prependToMemberExpression: typeof prependToMemberExpression;
3893
+ declare const indexLegacy_d_privateName: typeof privateName;
3894
+ declare const indexLegacy_d_program: typeof program;
3895
+ declare const indexLegacy_d_qualifiedTypeIdentifier: typeof qualifiedTypeIdentifier;
3896
+ declare const indexLegacy_d_recordExpression: typeof recordExpression;
3897
+ declare const indexLegacy_d_regExpLiteral: typeof regExpLiteral;
3898
+ declare const indexLegacy_d_removeComments: typeof removeComments;
3899
+ declare const indexLegacy_d_removeProperties: typeof removeProperties;
3900
+ declare const indexLegacy_d_removePropertiesDeep: typeof removePropertiesDeep;
3901
+ declare const indexLegacy_d_removeTypeDuplicates: typeof removeTypeDuplicates;
3902
+ declare const indexLegacy_d_restElement: typeof restElement;
3903
+ declare const indexLegacy_d_returnStatement: typeof returnStatement;
3904
+ declare const indexLegacy_d_sequenceExpression: typeof sequenceExpression;
3905
+ declare const indexLegacy_d_shallowEqual: typeof shallowEqual;
3906
+ declare const indexLegacy_d_spreadElement: typeof spreadElement;
3907
+ declare const indexLegacy_d_staticBlock: typeof staticBlock;
3908
+ declare const indexLegacy_d_stringLiteral: typeof stringLiteral;
3909
+ declare const indexLegacy_d_stringLiteralTypeAnnotation: typeof stringLiteralTypeAnnotation;
3910
+ declare const indexLegacy_d_stringTypeAnnotation: typeof stringTypeAnnotation;
3911
+ declare const indexLegacy_d_switchCase: typeof switchCase;
3912
+ declare const indexLegacy_d_switchStatement: typeof switchStatement;
3913
+ declare const indexLegacy_d_symbolTypeAnnotation: typeof symbolTypeAnnotation;
3914
+ declare const indexLegacy_d_taggedTemplateExpression: typeof taggedTemplateExpression;
3915
+ declare const indexLegacy_d_templateElement: typeof templateElement;
3916
+ declare const indexLegacy_d_templateLiteral: typeof templateLiteral;
3917
+ declare const indexLegacy_d_thisExpression: typeof thisExpression;
3918
+ declare const indexLegacy_d_thisTypeAnnotation: typeof thisTypeAnnotation;
3919
+ declare const indexLegacy_d_throwStatement: typeof throwStatement;
3920
+ declare const indexLegacy_d_toBindingIdentifierName: typeof toBindingIdentifierName;
3921
+ declare const indexLegacy_d_toBlock: typeof toBlock;
3922
+ declare const indexLegacy_d_toComputedKey: typeof toComputedKey;
3923
+ declare const indexLegacy_d_toExpression: typeof toExpression;
3924
+ declare const indexLegacy_d_toIdentifier: typeof toIdentifier;
3925
+ declare const indexLegacy_d_toKeyAlias: typeof toKeyAlias;
3926
+ declare const indexLegacy_d_toSequenceExpression: typeof toSequenceExpression;
3927
+ declare const indexLegacy_d_toStatement: typeof toStatement;
3928
+ declare const indexLegacy_d_topicReference: typeof topicReference;
3929
+ declare const indexLegacy_d_traverse: typeof traverse;
3930
+ declare const indexLegacy_d_traverseFast: typeof traverseFast;
3931
+ declare const indexLegacy_d_tryStatement: typeof tryStatement;
3932
+ declare const indexLegacy_d_tsAnyKeyword: typeof tsAnyKeyword;
3933
+ declare const indexLegacy_d_tsArrayType: typeof tsArrayType;
3934
+ declare const indexLegacy_d_tsAsExpression: typeof tsAsExpression;
3935
+ declare const indexLegacy_d_tsBigIntKeyword: typeof tsBigIntKeyword;
3936
+ declare const indexLegacy_d_tsBooleanKeyword: typeof tsBooleanKeyword;
3937
+ declare const indexLegacy_d_tsCallSignatureDeclaration: typeof tsCallSignatureDeclaration;
3938
+ declare const indexLegacy_d_tsConditionalType: typeof tsConditionalType;
3939
+ declare const indexLegacy_d_tsConstructSignatureDeclaration: typeof tsConstructSignatureDeclaration;
3940
+ declare const indexLegacy_d_tsConstructorType: typeof tsConstructorType;
3941
+ declare const indexLegacy_d_tsDeclareFunction: typeof tsDeclareFunction;
3942
+ declare const indexLegacy_d_tsDeclareMethod: typeof tsDeclareMethod;
3943
+ declare const indexLegacy_d_tsEnumBody: typeof tsEnumBody;
3944
+ declare const indexLegacy_d_tsEnumDeclaration: typeof tsEnumDeclaration;
3945
+ declare const indexLegacy_d_tsEnumMember: typeof tsEnumMember;
3946
+ declare const indexLegacy_d_tsExportAssignment: typeof tsExportAssignment;
3947
+ declare const indexLegacy_d_tsExpressionWithTypeArguments: typeof tsExpressionWithTypeArguments;
3948
+ declare const indexLegacy_d_tsExternalModuleReference: typeof tsExternalModuleReference;
3949
+ declare const indexLegacy_d_tsFunctionType: typeof tsFunctionType;
3950
+ declare const indexLegacy_d_tsImportEqualsDeclaration: typeof tsImportEqualsDeclaration;
3951
+ declare const indexLegacy_d_tsImportType: typeof tsImportType;
3952
+ declare const indexLegacy_d_tsIndexSignature: typeof tsIndexSignature;
3953
+ declare const indexLegacy_d_tsIndexedAccessType: typeof tsIndexedAccessType;
3954
+ declare const indexLegacy_d_tsInferType: typeof tsInferType;
3955
+ declare const indexLegacy_d_tsInstantiationExpression: typeof tsInstantiationExpression;
3956
+ declare const indexLegacy_d_tsInterfaceBody: typeof tsInterfaceBody;
3957
+ declare const indexLegacy_d_tsInterfaceDeclaration: typeof tsInterfaceDeclaration;
3958
+ declare const indexLegacy_d_tsIntersectionType: typeof tsIntersectionType;
3959
+ declare const indexLegacy_d_tsIntrinsicKeyword: typeof tsIntrinsicKeyword;
3960
+ declare const indexLegacy_d_tsLiteralType: typeof tsLiteralType;
3961
+ declare const indexLegacy_d_tsMappedType: typeof tsMappedType;
3962
+ declare const indexLegacy_d_tsMethodSignature: typeof tsMethodSignature;
3963
+ declare const indexLegacy_d_tsModuleBlock: typeof tsModuleBlock;
3964
+ declare const indexLegacy_d_tsModuleDeclaration: typeof tsModuleDeclaration;
3965
+ declare const indexLegacy_d_tsNamedTupleMember: typeof tsNamedTupleMember;
3966
+ declare const indexLegacy_d_tsNamespaceExportDeclaration: typeof tsNamespaceExportDeclaration;
3967
+ declare const indexLegacy_d_tsNeverKeyword: typeof tsNeverKeyword;
3968
+ declare const indexLegacy_d_tsNonNullExpression: typeof tsNonNullExpression;
3969
+ declare const indexLegacy_d_tsNullKeyword: typeof tsNullKeyword;
3970
+ declare const indexLegacy_d_tsNumberKeyword: typeof tsNumberKeyword;
3971
+ declare const indexLegacy_d_tsObjectKeyword: typeof tsObjectKeyword;
3972
+ declare const indexLegacy_d_tsOptionalType: typeof tsOptionalType;
3973
+ declare const indexLegacy_d_tsParameterProperty: typeof tsParameterProperty;
3974
+ declare const indexLegacy_d_tsParenthesizedType: typeof tsParenthesizedType;
3975
+ declare const indexLegacy_d_tsPropertySignature: typeof tsPropertySignature;
3976
+ declare const indexLegacy_d_tsQualifiedName: typeof tsQualifiedName;
3977
+ declare const indexLegacy_d_tsRestType: typeof tsRestType;
3978
+ declare const indexLegacy_d_tsSatisfiesExpression: typeof tsSatisfiesExpression;
3979
+ declare const indexLegacy_d_tsStringKeyword: typeof tsStringKeyword;
3980
+ declare const indexLegacy_d_tsSymbolKeyword: typeof tsSymbolKeyword;
3981
+ declare const indexLegacy_d_tsTemplateLiteralType: typeof tsTemplateLiteralType;
3982
+ declare const indexLegacy_d_tsThisType: typeof tsThisType;
3983
+ declare const indexLegacy_d_tsTupleType: typeof tsTupleType;
3984
+ declare const indexLegacy_d_tsTypeAliasDeclaration: typeof tsTypeAliasDeclaration;
3985
+ declare const indexLegacy_d_tsTypeAnnotation: typeof tsTypeAnnotation;
3986
+ declare const indexLegacy_d_tsTypeAssertion: typeof tsTypeAssertion;
3987
+ declare const indexLegacy_d_tsTypeLiteral: typeof tsTypeLiteral;
3988
+ declare const indexLegacy_d_tsTypeOperator: typeof tsTypeOperator;
3989
+ declare const indexLegacy_d_tsTypeParameter: typeof tsTypeParameter;
3990
+ declare const indexLegacy_d_tsTypeParameterDeclaration: typeof tsTypeParameterDeclaration;
3991
+ declare const indexLegacy_d_tsTypeParameterInstantiation: typeof tsTypeParameterInstantiation;
3992
+ declare const indexLegacy_d_tsTypePredicate: typeof tsTypePredicate;
3993
+ declare const indexLegacy_d_tsTypeQuery: typeof tsTypeQuery;
3994
+ declare const indexLegacy_d_tsTypeReference: typeof tsTypeReference;
3995
+ declare const indexLegacy_d_tsUndefinedKeyword: typeof tsUndefinedKeyword;
3996
+ declare const indexLegacy_d_tsUnionType: typeof tsUnionType;
3997
+ declare const indexLegacy_d_tsUnknownKeyword: typeof tsUnknownKeyword;
3998
+ declare const indexLegacy_d_tsVoidKeyword: typeof tsVoidKeyword;
3999
+ declare const indexLegacy_d_tupleExpression: typeof tupleExpression;
4000
+ declare const indexLegacy_d_tupleTypeAnnotation: typeof tupleTypeAnnotation;
4001
+ declare const indexLegacy_d_typeAlias: typeof typeAlias;
4002
+ declare const indexLegacy_d_typeAnnotation: typeof typeAnnotation;
4003
+ declare const indexLegacy_d_typeCastExpression: typeof typeCastExpression;
4004
+ declare const indexLegacy_d_typeParameter: typeof typeParameter;
4005
+ declare const indexLegacy_d_typeParameterDeclaration: typeof typeParameterDeclaration;
4006
+ declare const indexLegacy_d_typeParameterInstantiation: typeof typeParameterInstantiation;
4007
+ declare const indexLegacy_d_typeofTypeAnnotation: typeof typeofTypeAnnotation;
4008
+ declare const indexLegacy_d_unaryExpression: typeof unaryExpression;
4009
+ declare const indexLegacy_d_unionTypeAnnotation: typeof unionTypeAnnotation;
4010
+ declare const indexLegacy_d_updateExpression: typeof updateExpression;
4011
+ declare const indexLegacy_d_v8IntrinsicIdentifier: typeof v8IntrinsicIdentifier;
4012
+ declare const indexLegacy_d_validate: typeof validate;
4013
+ declare const indexLegacy_d_valueToNode: typeof valueToNode;
4014
+ declare const indexLegacy_d_variableDeclaration: typeof variableDeclaration;
4015
+ declare const indexLegacy_d_variableDeclarator: typeof variableDeclarator;
4016
+ declare const indexLegacy_d_variance: typeof variance;
4017
+ declare const indexLegacy_d_voidTypeAnnotation: typeof voidTypeAnnotation;
4018
+ declare const indexLegacy_d_whileStatement: typeof whileStatement;
4019
+ declare const indexLegacy_d_withStatement: typeof withStatement;
4020
+ declare const indexLegacy_d_yieldExpression: typeof yieldExpression;
4021
+ declare namespace indexLegacy_d {
4022
+ export { type indexLegacy_d_Accessor as Accessor, type indexLegacy_d_Aliases as Aliases, type indexLegacy_d_AnyTypeAnnotation as AnyTypeAnnotation, type indexLegacy_d_ArgumentPlaceholder as ArgumentPlaceholder, type indexLegacy_d_ArrayExpression as ArrayExpression, type indexLegacy_d_ArrayPattern as ArrayPattern, type indexLegacy_d_ArrayTypeAnnotation as ArrayTypeAnnotation, type indexLegacy_d_ArrowFunctionExpression as ArrowFunctionExpression, type indexLegacy_d_AssignmentExpression as AssignmentExpression, type indexLegacy_d_AssignmentPattern as AssignmentPattern, type indexLegacy_d_AwaitExpression as AwaitExpression, type indexLegacy_d_BigIntLiteral as BigIntLiteral, type indexLegacy_d_Binary as Binary, type indexLegacy_d_BinaryExpression as BinaryExpression, type indexLegacy_d_BindExpression as BindExpression, type indexLegacy_d_Block as Block, type indexLegacy_d_BlockParent as BlockParent, type indexLegacy_d_BlockStatement as BlockStatement, type indexLegacy_d_BooleanLiteral as BooleanLiteral, type indexLegacy_d_BooleanLiteralTypeAnnotation as BooleanLiteralTypeAnnotation, type indexLegacy_d_BooleanTypeAnnotation as BooleanTypeAnnotation, type indexLegacy_d_BreakStatement as BreakStatement, type indexLegacy_d_CallExpression as CallExpression, type indexLegacy_d_CatchClause as CatchClause, type indexLegacy_d_Class as Class, type indexLegacy_d_ClassAccessorProperty as ClassAccessorProperty, type indexLegacy_d_ClassBody as ClassBody, type indexLegacy_d_ClassDeclaration as ClassDeclaration, type indexLegacy_d_ClassExpression as ClassExpression, type indexLegacy_d_ClassImplements as ClassImplements, type indexLegacy_d_ClassMethod as ClassMethod, type indexLegacy_d_ClassPrivateMethod as ClassPrivateMethod, type indexLegacy_d_ClassPrivateProperty as ClassPrivateProperty, type indexLegacy_d_ClassProperty as ClassProperty, type indexLegacy_d_Comment as Comment, type indexLegacy_d_CommentBlock as CommentBlock, type indexLegacy_d_CommentLine as CommentLine, type indexLegacy_d_CommentTypeShorthand as CommentTypeShorthand, type indexLegacy_d_CompletionStatement as CompletionStatement, type indexLegacy_d_Conditional as Conditional, type indexLegacy_d_ConditionalExpression as ConditionalExpression, type indexLegacy_d_ContinueStatement as ContinueStatement, type indexLegacy_d_DebuggerStatement as DebuggerStatement, type indexLegacy_d_DecimalLiteral as DecimalLiteral, type indexLegacy_d_Declaration as Declaration, type indexLegacy_d_DeclareClass as DeclareClass, type indexLegacy_d_DeclareExportAllDeclaration as DeclareExportAllDeclaration, type indexLegacy_d_DeclareExportDeclaration as DeclareExportDeclaration, type indexLegacy_d_DeclareFunction as DeclareFunction, type indexLegacy_d_DeclareInterface as DeclareInterface, type indexLegacy_d_DeclareModule as DeclareModule, type indexLegacy_d_DeclareModuleExports as DeclareModuleExports, type indexLegacy_d_DeclareOpaqueType as DeclareOpaqueType, type indexLegacy_d_DeclareTypeAlias as DeclareTypeAlias, type indexLegacy_d_DeclareVariable as DeclareVariable, type indexLegacy_d_DeclaredPredicate as DeclaredPredicate, type indexLegacy_d_Decorator as Decorator, type indexLegacy_d_Directive as Directive, type indexLegacy_d_DirectiveLiteral as DirectiveLiteral, type indexLegacy_d_DoExpression as DoExpression, type indexLegacy_d_DoWhileStatement as DoWhileStatement, type indexLegacy_d_EmptyStatement as EmptyStatement, type indexLegacy_d_EmptyTypeAnnotation as EmptyTypeAnnotation, type indexLegacy_d_EnumBody as EnumBody, type indexLegacy_d_EnumBooleanBody as EnumBooleanBody, type indexLegacy_d_EnumBooleanMember as EnumBooleanMember, type indexLegacy_d_EnumDeclaration as EnumDeclaration, type indexLegacy_d_EnumDefaultedMember as EnumDefaultedMember, type indexLegacy_d_EnumMember as EnumMember, type indexLegacy_d_EnumNumberBody as EnumNumberBody, type indexLegacy_d_EnumNumberMember as EnumNumberMember, type indexLegacy_d_EnumStringBody as EnumStringBody, type indexLegacy_d_EnumStringMember as EnumStringMember, type indexLegacy_d_EnumSymbolBody as EnumSymbolBody, type indexLegacy_d_ExistsTypeAnnotation as ExistsTypeAnnotation, type indexLegacy_d_ExportAllDeclaration as ExportAllDeclaration, type indexLegacy_d_ExportDeclaration as ExportDeclaration, type indexLegacy_d_ExportDefaultDeclaration as ExportDefaultDeclaration, type indexLegacy_d_ExportDefaultSpecifier as ExportDefaultSpecifier, type indexLegacy_d_ExportNamedDeclaration as ExportNamedDeclaration, type indexLegacy_d_ExportNamespaceSpecifier as ExportNamespaceSpecifier, type indexLegacy_d_ExportSpecifier as ExportSpecifier, type indexLegacy_d_Expression as Expression, type indexLegacy_d_ExpressionStatement as ExpressionStatement, type indexLegacy_d_ExpressionWrapper as ExpressionWrapper, type indexLegacy_d_File as File, type indexLegacy_d_Flow as Flow, type indexLegacy_d_FlowBaseAnnotation as FlowBaseAnnotation, type indexLegacy_d_FlowDeclaration as FlowDeclaration, type indexLegacy_d_FlowPredicate as FlowPredicate, type indexLegacy_d_FlowType as FlowType, type indexLegacy_d_For as For, type indexLegacy_d_ForInStatement as ForInStatement, type indexLegacy_d_ForOfStatement as ForOfStatement, type indexLegacy_d_ForStatement as ForStatement, type indexLegacy_d_ForXStatement as ForXStatement, type indexLegacy_d_Function as Function, type indexLegacy_d_FunctionDeclaration as FunctionDeclaration, type indexLegacy_d_FunctionExpression as FunctionExpression, type indexLegacy_d_FunctionParent as FunctionParent, type indexLegacy_d_FunctionTypeAnnotation as FunctionTypeAnnotation, type indexLegacy_d_FunctionTypeParam as FunctionTypeParam, type indexLegacy_d_GenericTypeAnnotation as GenericTypeAnnotation, type indexLegacy_d_Identifier as Identifier, type indexLegacy_d_IfStatement as IfStatement, type indexLegacy_d_Immutable as Immutable, type indexLegacy_d_Import as Import, type indexLegacy_d_ImportAttribute as ImportAttribute, type indexLegacy_d_ImportDeclaration as ImportDeclaration, type indexLegacy_d_ImportDefaultSpecifier as ImportDefaultSpecifier, type indexLegacy_d_ImportExpression as ImportExpression, type indexLegacy_d_ImportNamespaceSpecifier as ImportNamespaceSpecifier, type indexLegacy_d_ImportOrExportDeclaration as ImportOrExportDeclaration, type indexLegacy_d_ImportSpecifier as ImportSpecifier, type indexLegacy_d_IndexedAccessType as IndexedAccessType, type indexLegacy_d_InferredPredicate as InferredPredicate, type indexLegacy_d_InterfaceDeclaration as InterfaceDeclaration, type indexLegacy_d_InterfaceExtends as InterfaceExtends, type indexLegacy_d_InterfaceTypeAnnotation as InterfaceTypeAnnotation, type indexLegacy_d_InterpreterDirective as InterpreterDirective, type indexLegacy_d_IntersectionTypeAnnotation as IntersectionTypeAnnotation, type indexLegacy_d_JSX as JSX, type indexLegacy_d_JSXAttribute as JSXAttribute, type indexLegacy_d_JSXClosingElement as JSXClosingElement, type indexLegacy_d_JSXClosingFragment as JSXClosingFragment, type indexLegacy_d_JSXElement as JSXElement, type indexLegacy_d_JSXEmptyExpression as JSXEmptyExpression, type indexLegacy_d_JSXExpressionContainer as JSXExpressionContainer, type indexLegacy_d_JSXFragment as JSXFragment, type indexLegacy_d_JSXIdentifier as JSXIdentifier, type indexLegacy_d_JSXMemberExpression as JSXMemberExpression, type indexLegacy_d_JSXNamespacedName as JSXNamespacedName, type indexLegacy_d_JSXOpeningElement as JSXOpeningElement, type indexLegacy_d_JSXOpeningFragment as JSXOpeningFragment, type indexLegacy_d_JSXSpreadAttribute as JSXSpreadAttribute, type indexLegacy_d_JSXSpreadChild as JSXSpreadChild, type indexLegacy_d_JSXText as JSXText, type indexLegacy_d_LVal as LVal, type indexLegacy_d_LabeledStatement as LabeledStatement, type indexLegacy_d_Literal as Literal, type indexLegacy_d_LogicalExpression as LogicalExpression, type indexLegacy_d_Loop as Loop, type indexLegacy_d_MemberExpression as MemberExpression, type indexLegacy_d_MetaProperty as MetaProperty, type indexLegacy_d_Method as Method, type indexLegacy_d_Miscellaneous as Miscellaneous, type indexLegacy_d_MixedTypeAnnotation as MixedTypeAnnotation, type indexLegacy_d_ModuleDeclaration as ModuleDeclaration, type indexLegacy_d_ModuleExpression as ModuleExpression, type indexLegacy_d_ModuleSpecifier as ModuleSpecifier, type indexLegacy_d_NewExpression as NewExpression, type indexLegacy_d_Node as Node, type indexLegacy_d_Noop as Noop, type indexLegacy_d_NullLiteral as NullLiteral, type indexLegacy_d_NullLiteralTypeAnnotation as NullLiteralTypeAnnotation, type indexLegacy_d_NullableTypeAnnotation as NullableTypeAnnotation, type indexLegacy_d_NumberLiteral as NumberLiteral, type indexLegacy_d_NumberLiteralTypeAnnotation as NumberLiteralTypeAnnotation, type indexLegacy_d_NumberTypeAnnotation as NumberTypeAnnotation, type indexLegacy_d_NumericLiteral as NumericLiteral, type indexLegacy_d_ObjectExpression as ObjectExpression, type indexLegacy_d_ObjectMember as ObjectMember, type indexLegacy_d_ObjectMethod as ObjectMethod, type indexLegacy_d_ObjectPattern as ObjectPattern, type indexLegacy_d_ObjectProperty as ObjectProperty, type indexLegacy_d_ObjectTypeAnnotation as ObjectTypeAnnotation, type indexLegacy_d_ObjectTypeCallProperty as ObjectTypeCallProperty, type indexLegacy_d_ObjectTypeIndexer as ObjectTypeIndexer, type indexLegacy_d_ObjectTypeInternalSlot as ObjectTypeInternalSlot, type indexLegacy_d_ObjectTypeProperty as ObjectTypeProperty, type indexLegacy_d_ObjectTypeSpreadProperty as ObjectTypeSpreadProperty, type indexLegacy_d_OpaqueType as OpaqueType, type indexLegacy_d_OptionalCallExpression as OptionalCallExpression, type indexLegacy_d_OptionalIndexedAccessType as OptionalIndexedAccessType, type indexLegacy_d_OptionalMemberExpression as OptionalMemberExpression, type indexLegacy_d_ParenthesizedExpression as ParenthesizedExpression, type indexLegacy_d_Pattern as Pattern, type indexLegacy_d_PatternLike as PatternLike, type indexLegacy_d_PipelineBareFunction as PipelineBareFunction, type indexLegacy_d_PipelinePrimaryTopicReference as PipelinePrimaryTopicReference, type indexLegacy_d_PipelineTopicExpression as PipelineTopicExpression, type indexLegacy_d_Placeholder as Placeholder, type indexLegacy_d_Private as Private, type indexLegacy_d_PrivateName as PrivateName, type indexLegacy_d_Program as Program, type indexLegacy_d_Property as Property, type indexLegacy_d_Pureish as Pureish, type indexLegacy_d_QualifiedTypeIdentifier as QualifiedTypeIdentifier, type indexLegacy_d_RecordExpression as RecordExpression, type indexLegacy_d_RegExpLiteral as RegExpLiteral, type indexLegacy_d_RegexLiteral as RegexLiteral, type indexLegacy_d_RestElement as RestElement, type indexLegacy_d_RestProperty as RestProperty, type indexLegacy_d_ReturnStatement as ReturnStatement, type indexLegacy_d_Scopable as Scopable, type indexLegacy_d_SequenceExpression as SequenceExpression, type indexLegacy_d_SourceLocation as SourceLocation, type indexLegacy_d_SpreadElement as SpreadElement, type indexLegacy_d_SpreadProperty as SpreadProperty, type indexLegacy_d_Standardized as Standardized, type indexLegacy_d_Statement as Statement, type indexLegacy_d_StaticBlock as StaticBlock, type indexLegacy_d_StringLiteral as StringLiteral, type indexLegacy_d_StringLiteralTypeAnnotation as StringLiteralTypeAnnotation, type indexLegacy_d_StringTypeAnnotation as StringTypeAnnotation, type indexLegacy_d_Super as Super, type indexLegacy_d_SwitchCase as SwitchCase, type indexLegacy_d_SwitchStatement as SwitchStatement, type indexLegacy_d_SymbolTypeAnnotation as SymbolTypeAnnotation, type indexLegacy_d_TSAnyKeyword as TSAnyKeyword, type indexLegacy_d_TSArrayType as TSArrayType, type indexLegacy_d_TSAsExpression as TSAsExpression, type indexLegacy_d_TSBaseType as TSBaseType, type indexLegacy_d_TSBigIntKeyword as TSBigIntKeyword, type indexLegacy_d_TSBooleanKeyword as TSBooleanKeyword, type indexLegacy_d_TSCallSignatureDeclaration as TSCallSignatureDeclaration, type indexLegacy_d_TSConditionalType as TSConditionalType, type indexLegacy_d_TSConstructSignatureDeclaration as TSConstructSignatureDeclaration, type indexLegacy_d_TSConstructorType as TSConstructorType, type indexLegacy_d_TSDeclareFunction as TSDeclareFunction, type indexLegacy_d_TSDeclareMethod as TSDeclareMethod, type indexLegacy_d_TSEntityName as TSEntityName, type indexLegacy_d_TSEnumBody as TSEnumBody, type indexLegacy_d_TSEnumDeclaration as TSEnumDeclaration, type indexLegacy_d_TSEnumMember as TSEnumMember, type indexLegacy_d_TSExportAssignment as TSExportAssignment, type indexLegacy_d_TSExpressionWithTypeArguments as TSExpressionWithTypeArguments, type indexLegacy_d_TSExternalModuleReference as TSExternalModuleReference, type indexLegacy_d_TSFunctionType as TSFunctionType, type indexLegacy_d_TSImportEqualsDeclaration as TSImportEqualsDeclaration, type indexLegacy_d_TSImportType as TSImportType, type indexLegacy_d_TSIndexSignature as TSIndexSignature, type indexLegacy_d_TSIndexedAccessType as TSIndexedAccessType, type indexLegacy_d_TSInferType as TSInferType, type indexLegacy_d_TSInstantiationExpression as TSInstantiationExpression, type indexLegacy_d_TSInterfaceBody as TSInterfaceBody, type indexLegacy_d_TSInterfaceDeclaration as TSInterfaceDeclaration, type indexLegacy_d_TSIntersectionType as TSIntersectionType, type indexLegacy_d_TSIntrinsicKeyword as TSIntrinsicKeyword, type indexLegacy_d_TSLiteralType as TSLiteralType, type indexLegacy_d_TSMappedType as TSMappedType, type indexLegacy_d_TSMethodSignature as TSMethodSignature, type indexLegacy_d_TSModuleBlock as TSModuleBlock, type indexLegacy_d_TSModuleDeclaration as TSModuleDeclaration, type indexLegacy_d_TSNamedTupleMember as TSNamedTupleMember, type indexLegacy_d_TSNamespaceExportDeclaration as TSNamespaceExportDeclaration, type indexLegacy_d_TSNeverKeyword as TSNeverKeyword, type indexLegacy_d_TSNonNullExpression as TSNonNullExpression, type indexLegacy_d_TSNullKeyword as TSNullKeyword, type indexLegacy_d_TSNumberKeyword as TSNumberKeyword, type indexLegacy_d_TSObjectKeyword as TSObjectKeyword, type indexLegacy_d_TSOptionalType as TSOptionalType, type indexLegacy_d_TSParameterProperty as TSParameterProperty, type indexLegacy_d_TSParenthesizedType as TSParenthesizedType, type indexLegacy_d_TSPropertySignature as TSPropertySignature, type indexLegacy_d_TSQualifiedName as TSQualifiedName, type indexLegacy_d_TSRestType as TSRestType, type indexLegacy_d_TSSatisfiesExpression as TSSatisfiesExpression, type indexLegacy_d_TSStringKeyword as TSStringKeyword, type indexLegacy_d_TSSymbolKeyword as TSSymbolKeyword, type indexLegacy_d_TSTemplateLiteralType as TSTemplateLiteralType, type indexLegacy_d_TSThisType as TSThisType, type indexLegacy_d_TSTupleType as TSTupleType, type indexLegacy_d_TSType as TSType, type indexLegacy_d_TSTypeAliasDeclaration as TSTypeAliasDeclaration, type indexLegacy_d_TSTypeAnnotation as TSTypeAnnotation, type indexLegacy_d_TSTypeAssertion as TSTypeAssertion, type indexLegacy_d_TSTypeElement as TSTypeElement, type indexLegacy_d_TSTypeLiteral as TSTypeLiteral, type indexLegacy_d_TSTypeOperator as TSTypeOperator, type indexLegacy_d_TSTypeParameter as TSTypeParameter, type indexLegacy_d_TSTypeParameterDeclaration as TSTypeParameterDeclaration, type indexLegacy_d_TSTypeParameterInstantiation as TSTypeParameterInstantiation, type indexLegacy_d_TSTypePredicate as TSTypePredicate, type indexLegacy_d_TSTypeQuery as TSTypeQuery, type indexLegacy_d_TSTypeReference as TSTypeReference, type indexLegacy_d_TSUndefinedKeyword as TSUndefinedKeyword, type indexLegacy_d_TSUnionType as TSUnionType, type indexLegacy_d_TSUnknownKeyword as TSUnknownKeyword, type indexLegacy_d_TSVoidKeyword as TSVoidKeyword, type indexLegacy_d_TaggedTemplateExpression as TaggedTemplateExpression, type indexLegacy_d_TemplateElement as TemplateElement, type indexLegacy_d_TemplateLiteral as TemplateLiteral, type indexLegacy_d_Terminatorless as Terminatorless, type indexLegacy_d_ThisExpression as ThisExpression, type indexLegacy_d_ThisTypeAnnotation as ThisTypeAnnotation, type indexLegacy_d_ThrowStatement as ThrowStatement, type indexLegacy_d_TopicReference as TopicReference, type indexLegacy_d_TraversalAncestors as TraversalAncestors, type indexLegacy_d_TraversalHandler as TraversalHandler, type indexLegacy_d_TraversalHandlers as TraversalHandlers, type indexLegacy_d_TryStatement as TryStatement, type indexLegacy_d_TupleExpression as TupleExpression, type indexLegacy_d_TupleTypeAnnotation as TupleTypeAnnotation, type indexLegacy_d_TypeAlias as TypeAlias, type indexLegacy_d_TypeAnnotation as TypeAnnotation, type indexLegacy_d_TypeCastExpression as TypeCastExpression, type indexLegacy_d_TypeParameter as TypeParameter, type indexLegacy_d_TypeParameterDeclaration as TypeParameterDeclaration, type indexLegacy_d_TypeParameterInstantiation as TypeParameterInstantiation, type indexLegacy_d_TypeScript as TypeScript, type indexLegacy_d_TypeofTypeAnnotation as TypeofTypeAnnotation, type indexLegacy_d_UnaryExpression as UnaryExpression, type indexLegacy_d_UnaryLike as UnaryLike, type indexLegacy_d_UnionTypeAnnotation as UnionTypeAnnotation, type indexLegacy_d_UpdateExpression as UpdateExpression, type indexLegacy_d_UserWhitespacable as UserWhitespacable, type indexLegacy_d_V8IntrinsicIdentifier as V8IntrinsicIdentifier, type indexLegacy_d_VariableDeclaration as VariableDeclaration, type indexLegacy_d_VariableDeclarator as VariableDeclarator, type indexLegacy_d_Variance as Variance, type indexLegacy_d_VoidTypeAnnotation as VoidTypeAnnotation, type indexLegacy_d_While as While, type indexLegacy_d_WhileStatement as WhileStatement, type indexLegacy_d_WithStatement as WithStatement, type indexLegacy_d_YieldExpression as YieldExpression, indexLegacy_d_addComment as addComment, indexLegacy_d_addComments as addComments, indexLegacy_d_anyTypeAnnotation as anyTypeAnnotation, indexLegacy_d_appendToMemberExpression as appendToMemberExpression, indexLegacy_d_argumentPlaceholder as argumentPlaceholder, indexLegacy_d_arrayExpression as arrayExpression, indexLegacy_d_arrayPattern as arrayPattern, indexLegacy_d_arrayTypeAnnotation as arrayTypeAnnotation, indexLegacy_d_arrowFunctionExpression as arrowFunctionExpression, indexLegacy_d_assertAccessor as assertAccessor, indexLegacy_d_assertAnyTypeAnnotation as assertAnyTypeAnnotation, indexLegacy_d_assertArgumentPlaceholder as assertArgumentPlaceholder, indexLegacy_d_assertArrayExpression as assertArrayExpression, indexLegacy_d_assertArrayPattern as assertArrayPattern, indexLegacy_d_assertArrayTypeAnnotation as assertArrayTypeAnnotation, indexLegacy_d_assertArrowFunctionExpression as assertArrowFunctionExpression, indexLegacy_d_assertAssignmentExpression as assertAssignmentExpression, indexLegacy_d_assertAssignmentPattern as assertAssignmentPattern, indexLegacy_d_assertAwaitExpression as assertAwaitExpression, indexLegacy_d_assertBigIntLiteral as assertBigIntLiteral, indexLegacy_d_assertBinary as assertBinary, indexLegacy_d_assertBinaryExpression as assertBinaryExpression, indexLegacy_d_assertBindExpression as assertBindExpression, indexLegacy_d_assertBlock as assertBlock, indexLegacy_d_assertBlockParent as assertBlockParent, indexLegacy_d_assertBlockStatement as assertBlockStatement, indexLegacy_d_assertBooleanLiteral as assertBooleanLiteral, indexLegacy_d_assertBooleanLiteralTypeAnnotation as assertBooleanLiteralTypeAnnotation, indexLegacy_d_assertBooleanTypeAnnotation as assertBooleanTypeAnnotation, indexLegacy_d_assertBreakStatement as assertBreakStatement, indexLegacy_d_assertCallExpression as assertCallExpression, indexLegacy_d_assertCatchClause as assertCatchClause, indexLegacy_d_assertClass as assertClass, indexLegacy_d_assertClassAccessorProperty as assertClassAccessorProperty, indexLegacy_d_assertClassBody as assertClassBody, indexLegacy_d_assertClassDeclaration as assertClassDeclaration, indexLegacy_d_assertClassExpression as assertClassExpression, indexLegacy_d_assertClassImplements as assertClassImplements, indexLegacy_d_assertClassMethod as assertClassMethod, indexLegacy_d_assertClassPrivateMethod as assertClassPrivateMethod, indexLegacy_d_assertClassPrivateProperty as assertClassPrivateProperty, indexLegacy_d_assertClassProperty as assertClassProperty, indexLegacy_d_assertCompletionStatement as assertCompletionStatement, indexLegacy_d_assertConditional as assertConditional, indexLegacy_d_assertConditionalExpression as assertConditionalExpression, indexLegacy_d_assertContinueStatement as assertContinueStatement, indexLegacy_d_assertDebuggerStatement as assertDebuggerStatement, indexLegacy_d_assertDecimalLiteral as assertDecimalLiteral, indexLegacy_d_assertDeclaration as assertDeclaration, indexLegacy_d_assertDeclareClass as assertDeclareClass, indexLegacy_d_assertDeclareExportAllDeclaration as assertDeclareExportAllDeclaration, indexLegacy_d_assertDeclareExportDeclaration as assertDeclareExportDeclaration, indexLegacy_d_assertDeclareFunction as assertDeclareFunction, indexLegacy_d_assertDeclareInterface as assertDeclareInterface, indexLegacy_d_assertDeclareModule as assertDeclareModule, indexLegacy_d_assertDeclareModuleExports as assertDeclareModuleExports, indexLegacy_d_assertDeclareOpaqueType as assertDeclareOpaqueType, indexLegacy_d_assertDeclareTypeAlias as assertDeclareTypeAlias, indexLegacy_d_assertDeclareVariable as assertDeclareVariable, indexLegacy_d_assertDeclaredPredicate as assertDeclaredPredicate, indexLegacy_d_assertDecorator as assertDecorator, indexLegacy_d_assertDirective as assertDirective, indexLegacy_d_assertDirectiveLiteral as assertDirectiveLiteral, indexLegacy_d_assertDoExpression as assertDoExpression, indexLegacy_d_assertDoWhileStatement as assertDoWhileStatement, indexLegacy_d_assertEmptyStatement as assertEmptyStatement, indexLegacy_d_assertEmptyTypeAnnotation as assertEmptyTypeAnnotation, indexLegacy_d_assertEnumBody as assertEnumBody, indexLegacy_d_assertEnumBooleanBody as assertEnumBooleanBody, indexLegacy_d_assertEnumBooleanMember as assertEnumBooleanMember, indexLegacy_d_assertEnumDeclaration as assertEnumDeclaration, indexLegacy_d_assertEnumDefaultedMember as assertEnumDefaultedMember, indexLegacy_d_assertEnumMember as assertEnumMember, indexLegacy_d_assertEnumNumberBody as assertEnumNumberBody, indexLegacy_d_assertEnumNumberMember as assertEnumNumberMember, indexLegacy_d_assertEnumStringBody as assertEnumStringBody, indexLegacy_d_assertEnumStringMember as assertEnumStringMember, indexLegacy_d_assertEnumSymbolBody as assertEnumSymbolBody, indexLegacy_d_assertExistsTypeAnnotation as assertExistsTypeAnnotation, indexLegacy_d_assertExportAllDeclaration as assertExportAllDeclaration, indexLegacy_d_assertExportDeclaration as assertExportDeclaration, indexLegacy_d_assertExportDefaultDeclaration as assertExportDefaultDeclaration, indexLegacy_d_assertExportDefaultSpecifier as assertExportDefaultSpecifier, indexLegacy_d_assertExportNamedDeclaration as assertExportNamedDeclaration, indexLegacy_d_assertExportNamespaceSpecifier as assertExportNamespaceSpecifier, indexLegacy_d_assertExportSpecifier as assertExportSpecifier, indexLegacy_d_assertExpression as assertExpression, indexLegacy_d_assertExpressionStatement as assertExpressionStatement, indexLegacy_d_assertExpressionWrapper as assertExpressionWrapper, indexLegacy_d_assertFile as assertFile, indexLegacy_d_assertFlow as assertFlow, indexLegacy_d_assertFlowBaseAnnotation as assertFlowBaseAnnotation, indexLegacy_d_assertFlowDeclaration as assertFlowDeclaration, indexLegacy_d_assertFlowPredicate as assertFlowPredicate, indexLegacy_d_assertFlowType as assertFlowType, indexLegacy_d_assertFor as assertFor, indexLegacy_d_assertForInStatement as assertForInStatement, indexLegacy_d_assertForOfStatement as assertForOfStatement, indexLegacy_d_assertForStatement as assertForStatement, indexLegacy_d_assertForXStatement as assertForXStatement, indexLegacy_d_assertFunction as assertFunction, indexLegacy_d_assertFunctionDeclaration as assertFunctionDeclaration, indexLegacy_d_assertFunctionExpression as assertFunctionExpression, indexLegacy_d_assertFunctionParent as assertFunctionParent, indexLegacy_d_assertFunctionTypeAnnotation as assertFunctionTypeAnnotation, indexLegacy_d_assertFunctionTypeParam as assertFunctionTypeParam, indexLegacy_d_assertGenericTypeAnnotation as assertGenericTypeAnnotation, indexLegacy_d_assertIdentifier as assertIdentifier, indexLegacy_d_assertIfStatement as assertIfStatement, indexLegacy_d_assertImmutable as assertImmutable, indexLegacy_d_assertImport as assertImport, indexLegacy_d_assertImportAttribute as assertImportAttribute, indexLegacy_d_assertImportDeclaration as assertImportDeclaration, indexLegacy_d_assertImportDefaultSpecifier as assertImportDefaultSpecifier, indexLegacy_d_assertImportExpression as assertImportExpression, indexLegacy_d_assertImportNamespaceSpecifier as assertImportNamespaceSpecifier, indexLegacy_d_assertImportOrExportDeclaration as assertImportOrExportDeclaration, indexLegacy_d_assertImportSpecifier as assertImportSpecifier, indexLegacy_d_assertIndexedAccessType as assertIndexedAccessType, indexLegacy_d_assertInferredPredicate as assertInferredPredicate, indexLegacy_d_assertInterfaceDeclaration as assertInterfaceDeclaration, indexLegacy_d_assertInterfaceExtends as assertInterfaceExtends, indexLegacy_d_assertInterfaceTypeAnnotation as assertInterfaceTypeAnnotation, indexLegacy_d_assertInterpreterDirective as assertInterpreterDirective, indexLegacy_d_assertIntersectionTypeAnnotation as assertIntersectionTypeAnnotation, indexLegacy_d_assertJSX as assertJSX, indexLegacy_d_assertJSXAttribute as assertJSXAttribute, indexLegacy_d_assertJSXClosingElement as assertJSXClosingElement, indexLegacy_d_assertJSXClosingFragment as assertJSXClosingFragment, indexLegacy_d_assertJSXElement as assertJSXElement, indexLegacy_d_assertJSXEmptyExpression as assertJSXEmptyExpression, indexLegacy_d_assertJSXExpressionContainer as assertJSXExpressionContainer, indexLegacy_d_assertJSXFragment as assertJSXFragment, indexLegacy_d_assertJSXIdentifier as assertJSXIdentifier, indexLegacy_d_assertJSXMemberExpression as assertJSXMemberExpression, indexLegacy_d_assertJSXNamespacedName as assertJSXNamespacedName, indexLegacy_d_assertJSXOpeningElement as assertJSXOpeningElement, indexLegacy_d_assertJSXOpeningFragment as assertJSXOpeningFragment, indexLegacy_d_assertJSXSpreadAttribute as assertJSXSpreadAttribute, indexLegacy_d_assertJSXSpreadChild as assertJSXSpreadChild, indexLegacy_d_assertJSXText as assertJSXText, indexLegacy_d_assertLVal as assertLVal, indexLegacy_d_assertLabeledStatement as assertLabeledStatement, indexLegacy_d_assertLiteral as assertLiteral, indexLegacy_d_assertLogicalExpression as assertLogicalExpression, indexLegacy_d_assertLoop as assertLoop, indexLegacy_d_assertMemberExpression as assertMemberExpression, indexLegacy_d_assertMetaProperty as assertMetaProperty, indexLegacy_d_assertMethod as assertMethod, indexLegacy_d_assertMiscellaneous as assertMiscellaneous, indexLegacy_d_assertMixedTypeAnnotation as assertMixedTypeAnnotation, indexLegacy_d_assertModuleDeclaration as assertModuleDeclaration, indexLegacy_d_assertModuleExpression as assertModuleExpression, indexLegacy_d_assertModuleSpecifier as assertModuleSpecifier, indexLegacy_d_assertNewExpression as assertNewExpression, indexLegacy_d_assertNode as assertNode, indexLegacy_d_assertNoop as assertNoop, indexLegacy_d_assertNullLiteral as assertNullLiteral, indexLegacy_d_assertNullLiteralTypeAnnotation as assertNullLiteralTypeAnnotation, indexLegacy_d_assertNullableTypeAnnotation as assertNullableTypeAnnotation, indexLegacy_d_assertNumberLiteral as assertNumberLiteral, indexLegacy_d_assertNumberLiteralTypeAnnotation as assertNumberLiteralTypeAnnotation, indexLegacy_d_assertNumberTypeAnnotation as assertNumberTypeAnnotation, indexLegacy_d_assertNumericLiteral as assertNumericLiteral, indexLegacy_d_assertObjectExpression as assertObjectExpression, indexLegacy_d_assertObjectMember as assertObjectMember, indexLegacy_d_assertObjectMethod as assertObjectMethod, indexLegacy_d_assertObjectPattern as assertObjectPattern, indexLegacy_d_assertObjectProperty as assertObjectProperty, indexLegacy_d_assertObjectTypeAnnotation as assertObjectTypeAnnotation, indexLegacy_d_assertObjectTypeCallProperty as assertObjectTypeCallProperty, indexLegacy_d_assertObjectTypeIndexer as assertObjectTypeIndexer, indexLegacy_d_assertObjectTypeInternalSlot as assertObjectTypeInternalSlot, indexLegacy_d_assertObjectTypeProperty as assertObjectTypeProperty, indexLegacy_d_assertObjectTypeSpreadProperty as assertObjectTypeSpreadProperty, indexLegacy_d_assertOpaqueType as assertOpaqueType, indexLegacy_d_assertOptionalCallExpression as assertOptionalCallExpression, indexLegacy_d_assertOptionalIndexedAccessType as assertOptionalIndexedAccessType, indexLegacy_d_assertOptionalMemberExpression as assertOptionalMemberExpression, indexLegacy_d_assertParenthesizedExpression as assertParenthesizedExpression, indexLegacy_d_assertPattern as assertPattern, indexLegacy_d_assertPatternLike as assertPatternLike, indexLegacy_d_assertPipelineBareFunction as assertPipelineBareFunction, indexLegacy_d_assertPipelinePrimaryTopicReference as assertPipelinePrimaryTopicReference, indexLegacy_d_assertPipelineTopicExpression as assertPipelineTopicExpression, indexLegacy_d_assertPlaceholder as assertPlaceholder, indexLegacy_d_assertPrivate as assertPrivate, indexLegacy_d_assertPrivateName as assertPrivateName, indexLegacy_d_assertProgram as assertProgram, indexLegacy_d_assertProperty as assertProperty, indexLegacy_d_assertPureish as assertPureish, indexLegacy_d_assertQualifiedTypeIdentifier as assertQualifiedTypeIdentifier, indexLegacy_d_assertRecordExpression as assertRecordExpression, indexLegacy_d_assertRegExpLiteral as assertRegExpLiteral, indexLegacy_d_assertRegexLiteral as assertRegexLiteral, indexLegacy_d_assertRestElement as assertRestElement, indexLegacy_d_assertRestProperty as assertRestProperty, indexLegacy_d_assertReturnStatement as assertReturnStatement, indexLegacy_d_assertScopable as assertScopable, indexLegacy_d_assertSequenceExpression as assertSequenceExpression, indexLegacy_d_assertSpreadElement as assertSpreadElement, indexLegacy_d_assertSpreadProperty as assertSpreadProperty, indexLegacy_d_assertStandardized as assertStandardized, indexLegacy_d_assertStatement as assertStatement, indexLegacy_d_assertStaticBlock as assertStaticBlock, indexLegacy_d_assertStringLiteral as assertStringLiteral, indexLegacy_d_assertStringLiteralTypeAnnotation as assertStringLiteralTypeAnnotation, indexLegacy_d_assertStringTypeAnnotation as assertStringTypeAnnotation, indexLegacy_d_assertSuper as assertSuper, indexLegacy_d_assertSwitchCase as assertSwitchCase, indexLegacy_d_assertSwitchStatement as assertSwitchStatement, indexLegacy_d_assertSymbolTypeAnnotation as assertSymbolTypeAnnotation, indexLegacy_d_assertTSAnyKeyword as assertTSAnyKeyword, indexLegacy_d_assertTSArrayType as assertTSArrayType, indexLegacy_d_assertTSAsExpression as assertTSAsExpression, indexLegacy_d_assertTSBaseType as assertTSBaseType, indexLegacy_d_assertTSBigIntKeyword as assertTSBigIntKeyword, indexLegacy_d_assertTSBooleanKeyword as assertTSBooleanKeyword, indexLegacy_d_assertTSCallSignatureDeclaration as assertTSCallSignatureDeclaration, indexLegacy_d_assertTSConditionalType as assertTSConditionalType, indexLegacy_d_assertTSConstructSignatureDeclaration as assertTSConstructSignatureDeclaration, indexLegacy_d_assertTSConstructorType as assertTSConstructorType, indexLegacy_d_assertTSDeclareFunction as assertTSDeclareFunction, indexLegacy_d_assertTSDeclareMethod as assertTSDeclareMethod, indexLegacy_d_assertTSEntityName as assertTSEntityName, indexLegacy_d_assertTSEnumBody as assertTSEnumBody, indexLegacy_d_assertTSEnumDeclaration as assertTSEnumDeclaration, indexLegacy_d_assertTSEnumMember as assertTSEnumMember, indexLegacy_d_assertTSExportAssignment as assertTSExportAssignment, indexLegacy_d_assertTSExpressionWithTypeArguments as assertTSExpressionWithTypeArguments, indexLegacy_d_assertTSExternalModuleReference as assertTSExternalModuleReference, indexLegacy_d_assertTSFunctionType as assertTSFunctionType, indexLegacy_d_assertTSImportEqualsDeclaration as assertTSImportEqualsDeclaration, indexLegacy_d_assertTSImportType as assertTSImportType, indexLegacy_d_assertTSIndexSignature as assertTSIndexSignature, indexLegacy_d_assertTSIndexedAccessType as assertTSIndexedAccessType, indexLegacy_d_assertTSInferType as assertTSInferType, indexLegacy_d_assertTSInstantiationExpression as assertTSInstantiationExpression, indexLegacy_d_assertTSInterfaceBody as assertTSInterfaceBody, indexLegacy_d_assertTSInterfaceDeclaration as assertTSInterfaceDeclaration, indexLegacy_d_assertTSIntersectionType as assertTSIntersectionType, indexLegacy_d_assertTSIntrinsicKeyword as assertTSIntrinsicKeyword, indexLegacy_d_assertTSLiteralType as assertTSLiteralType, indexLegacy_d_assertTSMappedType as assertTSMappedType, indexLegacy_d_assertTSMethodSignature as assertTSMethodSignature, indexLegacy_d_assertTSModuleBlock as assertTSModuleBlock, indexLegacy_d_assertTSModuleDeclaration as assertTSModuleDeclaration, indexLegacy_d_assertTSNamedTupleMember as assertTSNamedTupleMember, indexLegacy_d_assertTSNamespaceExportDeclaration as assertTSNamespaceExportDeclaration, indexLegacy_d_assertTSNeverKeyword as assertTSNeverKeyword, indexLegacy_d_assertTSNonNullExpression as assertTSNonNullExpression, indexLegacy_d_assertTSNullKeyword as assertTSNullKeyword, indexLegacy_d_assertTSNumberKeyword as assertTSNumberKeyword, indexLegacy_d_assertTSObjectKeyword as assertTSObjectKeyword, indexLegacy_d_assertTSOptionalType as assertTSOptionalType, indexLegacy_d_assertTSParameterProperty as assertTSParameterProperty, indexLegacy_d_assertTSParenthesizedType as assertTSParenthesizedType, indexLegacy_d_assertTSPropertySignature as assertTSPropertySignature, indexLegacy_d_assertTSQualifiedName as assertTSQualifiedName, indexLegacy_d_assertTSRestType as assertTSRestType, indexLegacy_d_assertTSSatisfiesExpression as assertTSSatisfiesExpression, indexLegacy_d_assertTSStringKeyword as assertTSStringKeyword, indexLegacy_d_assertTSSymbolKeyword as assertTSSymbolKeyword, indexLegacy_d_assertTSTemplateLiteralType as assertTSTemplateLiteralType, indexLegacy_d_assertTSThisType as assertTSThisType, indexLegacy_d_assertTSTupleType as assertTSTupleType, indexLegacy_d_assertTSType as assertTSType, indexLegacy_d_assertTSTypeAliasDeclaration as assertTSTypeAliasDeclaration, indexLegacy_d_assertTSTypeAnnotation as assertTSTypeAnnotation, indexLegacy_d_assertTSTypeAssertion as assertTSTypeAssertion, indexLegacy_d_assertTSTypeElement as assertTSTypeElement, indexLegacy_d_assertTSTypeLiteral as assertTSTypeLiteral, indexLegacy_d_assertTSTypeOperator as assertTSTypeOperator, indexLegacy_d_assertTSTypeParameter as assertTSTypeParameter, indexLegacy_d_assertTSTypeParameterDeclaration as assertTSTypeParameterDeclaration, indexLegacy_d_assertTSTypeParameterInstantiation as assertTSTypeParameterInstantiation, indexLegacy_d_assertTSTypePredicate as assertTSTypePredicate, indexLegacy_d_assertTSTypeQuery as assertTSTypeQuery, indexLegacy_d_assertTSTypeReference as assertTSTypeReference, indexLegacy_d_assertTSUndefinedKeyword as assertTSUndefinedKeyword, indexLegacy_d_assertTSUnionType as assertTSUnionType, indexLegacy_d_assertTSUnknownKeyword as assertTSUnknownKeyword, indexLegacy_d_assertTSVoidKeyword as assertTSVoidKeyword, indexLegacy_d_assertTaggedTemplateExpression as assertTaggedTemplateExpression, indexLegacy_d_assertTemplateElement as assertTemplateElement, indexLegacy_d_assertTemplateLiteral as assertTemplateLiteral, indexLegacy_d_assertTerminatorless as assertTerminatorless, indexLegacy_d_assertThisExpression as assertThisExpression, indexLegacy_d_assertThisTypeAnnotation as assertThisTypeAnnotation, indexLegacy_d_assertThrowStatement as assertThrowStatement, indexLegacy_d_assertTopicReference as assertTopicReference, indexLegacy_d_assertTryStatement as assertTryStatement, indexLegacy_d_assertTupleExpression as assertTupleExpression, indexLegacy_d_assertTupleTypeAnnotation as assertTupleTypeAnnotation, indexLegacy_d_assertTypeAlias as assertTypeAlias, indexLegacy_d_assertTypeAnnotation as assertTypeAnnotation, indexLegacy_d_assertTypeCastExpression as assertTypeCastExpression, indexLegacy_d_assertTypeParameter as assertTypeParameter, indexLegacy_d_assertTypeParameterDeclaration as assertTypeParameterDeclaration, indexLegacy_d_assertTypeParameterInstantiation as assertTypeParameterInstantiation, indexLegacy_d_assertTypeScript as assertTypeScript, indexLegacy_d_assertTypeofTypeAnnotation as assertTypeofTypeAnnotation, indexLegacy_d_assertUnaryExpression as assertUnaryExpression, indexLegacy_d_assertUnaryLike as assertUnaryLike, indexLegacy_d_assertUnionTypeAnnotation as assertUnionTypeAnnotation, indexLegacy_d_assertUpdateExpression as assertUpdateExpression, indexLegacy_d_assertUserWhitespacable as assertUserWhitespacable, indexLegacy_d_assertV8IntrinsicIdentifier as assertV8IntrinsicIdentifier, indexLegacy_d_assertVariableDeclaration as assertVariableDeclaration, indexLegacy_d_assertVariableDeclarator as assertVariableDeclarator, indexLegacy_d_assertVariance as assertVariance, indexLegacy_d_assertVoidTypeAnnotation as assertVoidTypeAnnotation, indexLegacy_d_assertWhile as assertWhile, indexLegacy_d_assertWhileStatement as assertWhileStatement, indexLegacy_d_assertWithStatement as assertWithStatement, indexLegacy_d_assertYieldExpression as assertYieldExpression, indexLegacy_d_assignmentExpression as assignmentExpression, indexLegacy_d_assignmentPattern as assignmentPattern, indexLegacy_d_awaitExpression as awaitExpression, indexLegacy_d_bigIntLiteral as bigIntLiteral, indexLegacy_d_binaryExpression as binaryExpression, indexLegacy_d_bindExpression as bindExpression, indexLegacy_d_blockStatement as blockStatement, indexLegacy_d_booleanLiteral as booleanLiteral, indexLegacy_d_booleanLiteralTypeAnnotation as booleanLiteralTypeAnnotation, indexLegacy_d_booleanTypeAnnotation as booleanTypeAnnotation, indexLegacy_d_breakStatement as breakStatement, indexLegacy_d_buildChildren as buildChildren, indexLegacy_d_buildMatchMemberExpression as buildMatchMemberExpression, indexLegacy_d_callExpression as callExpression, indexLegacy_d_catchClause as catchClause, indexLegacy_d_classAccessorProperty as classAccessorProperty, indexLegacy_d_classBody as classBody, indexLegacy_d_classDeclaration as classDeclaration, indexLegacy_d_classExpression as classExpression, indexLegacy_d_classImplements as classImplements, indexLegacy_d_classMethod as classMethod, indexLegacy_d_classPrivateMethod as classPrivateMethod, indexLegacy_d_classPrivateProperty as classPrivateProperty, indexLegacy_d_classProperty as classProperty, indexLegacy_d_clone as clone, indexLegacy_d_cloneDeep as cloneDeep, indexLegacy_d_cloneDeepWithoutLoc as cloneDeepWithoutLoc, indexLegacy_d_cloneNode as cloneNode, indexLegacy_d_cloneWithoutLoc as cloneWithoutLoc, indexLegacy_d_conditionalExpression as conditionalExpression, indexLegacy_d_continueStatement as continueStatement, indexLegacy_d_createFlowUnionType as createFlowUnionType, indexLegacy_d_createTypeAnnotationBasedOnTypeof as createTypeAnnotationBasedOnTypeof, indexLegacy_d_createUnionTypeAnnotation as createUnionTypeAnnotation, indexLegacy_d_debuggerStatement as debuggerStatement, indexLegacy_d_decimalLiteral as decimalLiteral, indexLegacy_d_declareClass as declareClass, indexLegacy_d_declareExportAllDeclaration as declareExportAllDeclaration, indexLegacy_d_declareExportDeclaration as declareExportDeclaration, indexLegacy_d_declareFunction as declareFunction, indexLegacy_d_declareInterface as declareInterface, indexLegacy_d_declareModule as declareModule, indexLegacy_d_declareModuleExports as declareModuleExports, indexLegacy_d_declareOpaqueType as declareOpaqueType, indexLegacy_d_declareTypeAlias as declareTypeAlias, indexLegacy_d_declareVariable as declareVariable, indexLegacy_d_declaredPredicate as declaredPredicate, indexLegacy_d_decorator as decorator, indexLegacy_d_directive as directive, indexLegacy_d_directiveLiteral as directiveLiteral, indexLegacy_d_doExpression as doExpression, indexLegacy_d_doWhileStatement as doWhileStatement, indexLegacy_d_emptyStatement as emptyStatement, indexLegacy_d_emptyTypeAnnotation as emptyTypeAnnotation, indexLegacy_d_ensureBlock as ensureBlock, indexLegacy_d_enumBooleanBody as enumBooleanBody, indexLegacy_d_enumBooleanMember as enumBooleanMember, indexLegacy_d_enumDeclaration as enumDeclaration, indexLegacy_d_enumDefaultedMember as enumDefaultedMember, indexLegacy_d_enumNumberBody as enumNumberBody, indexLegacy_d_enumNumberMember as enumNumberMember, indexLegacy_d_enumStringBody as enumStringBody, indexLegacy_d_enumStringMember as enumStringMember, indexLegacy_d_enumSymbolBody as enumSymbolBody, indexLegacy_d_existsTypeAnnotation as existsTypeAnnotation, indexLegacy_d_exportAllDeclaration as exportAllDeclaration, indexLegacy_d_exportDefaultDeclaration as exportDefaultDeclaration, indexLegacy_d_exportDefaultSpecifier as exportDefaultSpecifier, indexLegacy_d_exportNamedDeclaration as exportNamedDeclaration, indexLegacy_d_exportNamespaceSpecifier as exportNamespaceSpecifier, indexLegacy_d_exportSpecifier as exportSpecifier, indexLegacy_d_expressionStatement as expressionStatement, indexLegacy_d_file as file, indexLegacy_d_forInStatement as forInStatement, indexLegacy_d_forOfStatement as forOfStatement, indexLegacy_d_forStatement as forStatement, indexLegacy_d_functionDeclaration as functionDeclaration, indexLegacy_d_functionExpression as functionExpression, indexLegacy_d_functionTypeAnnotation as functionTypeAnnotation, indexLegacy_d_functionTypeParam as functionTypeParam, indexLegacy_d_genericTypeAnnotation as genericTypeAnnotation, indexLegacy_d_getBindingIdentifiers as getBindingIdentifiers, indexLegacy_d_getOuterBindingIdentifiers as getOuterBindingIdentifiers, indexLegacy_d_identifier as identifier, indexLegacy_d_ifStatement as ifStatement, _import as import, indexLegacy_d_importAttribute as importAttribute, indexLegacy_d_importDeclaration as importDeclaration, indexLegacy_d_importDefaultSpecifier as importDefaultSpecifier, indexLegacy_d_importExpression as importExpression, indexLegacy_d_importNamespaceSpecifier as importNamespaceSpecifier, indexLegacy_d_importSpecifier as importSpecifier, indexLegacy_d_indexedAccessType as indexedAccessType, indexLegacy_d_inferredPredicate as inferredPredicate, indexLegacy_d_inheritInnerComments as inheritInnerComments, indexLegacy_d_inheritLeadingComments as inheritLeadingComments, indexLegacy_d_inheritTrailingComments as inheritTrailingComments, indexLegacy_d_inherits as inherits, indexLegacy_d_inheritsComments as inheritsComments, indexLegacy_d_interfaceDeclaration as interfaceDeclaration, indexLegacy_d_interfaceExtends as interfaceExtends, indexLegacy_d_interfaceTypeAnnotation as interfaceTypeAnnotation, indexLegacy_d_interpreterDirective as interpreterDirective, indexLegacy_d_intersectionTypeAnnotation as intersectionTypeAnnotation, indexLegacy_d_is as is, indexLegacy_d_isAccessor as isAccessor, indexLegacy_d_isAnyTypeAnnotation as isAnyTypeAnnotation, indexLegacy_d_isArgumentPlaceholder as isArgumentPlaceholder, indexLegacy_d_isArrayExpression as isArrayExpression, indexLegacy_d_isArrayPattern as isArrayPattern, indexLegacy_d_isArrayTypeAnnotation as isArrayTypeAnnotation, indexLegacy_d_isArrowFunctionExpression as isArrowFunctionExpression, indexLegacy_d_isAssignmentExpression as isAssignmentExpression, indexLegacy_d_isAssignmentPattern as isAssignmentPattern, indexLegacy_d_isAwaitExpression as isAwaitExpression, indexLegacy_d_isBigIntLiteral as isBigIntLiteral, indexLegacy_d_isBinary as isBinary, indexLegacy_d_isBinaryExpression as isBinaryExpression, indexLegacy_d_isBindExpression as isBindExpression, indexLegacy_d_isBinding as isBinding, indexLegacy_d_isBlock as isBlock, indexLegacy_d_isBlockParent as isBlockParent, indexLegacy_d_isBlockScoped as isBlockScoped, indexLegacy_d_isBlockStatement as isBlockStatement, indexLegacy_d_isBooleanLiteral as isBooleanLiteral, indexLegacy_d_isBooleanLiteralTypeAnnotation as isBooleanLiteralTypeAnnotation, indexLegacy_d_isBooleanTypeAnnotation as isBooleanTypeAnnotation, indexLegacy_d_isBreakStatement as isBreakStatement, indexLegacy_d_isCallExpression as isCallExpression, indexLegacy_d_isCatchClause as isCatchClause, indexLegacy_d_isClass as isClass, indexLegacy_d_isClassAccessorProperty as isClassAccessorProperty, indexLegacy_d_isClassBody as isClassBody, indexLegacy_d_isClassDeclaration as isClassDeclaration, indexLegacy_d_isClassExpression as isClassExpression, indexLegacy_d_isClassImplements as isClassImplements, indexLegacy_d_isClassMethod as isClassMethod, indexLegacy_d_isClassPrivateMethod as isClassPrivateMethod, indexLegacy_d_isClassPrivateProperty as isClassPrivateProperty, indexLegacy_d_isClassProperty as isClassProperty, indexLegacy_d_isCompletionStatement as isCompletionStatement, indexLegacy_d_isConditional as isConditional, indexLegacy_d_isConditionalExpression as isConditionalExpression, indexLegacy_d_isContinueStatement as isContinueStatement, indexLegacy_d_isDebuggerStatement as isDebuggerStatement, indexLegacy_d_isDecimalLiteral as isDecimalLiteral, indexLegacy_d_isDeclaration as isDeclaration, indexLegacy_d_isDeclareClass as isDeclareClass, indexLegacy_d_isDeclareExportAllDeclaration as isDeclareExportAllDeclaration, indexLegacy_d_isDeclareExportDeclaration as isDeclareExportDeclaration, indexLegacy_d_isDeclareFunction as isDeclareFunction, indexLegacy_d_isDeclareInterface as isDeclareInterface, indexLegacy_d_isDeclareModule as isDeclareModule, indexLegacy_d_isDeclareModuleExports as isDeclareModuleExports, indexLegacy_d_isDeclareOpaqueType as isDeclareOpaqueType, indexLegacy_d_isDeclareTypeAlias as isDeclareTypeAlias, indexLegacy_d_isDeclareVariable as isDeclareVariable, indexLegacy_d_isDeclaredPredicate as isDeclaredPredicate, indexLegacy_d_isDecorator as isDecorator, indexLegacy_d_isDirective as isDirective, indexLegacy_d_isDirectiveLiteral as isDirectiveLiteral, indexLegacy_d_isDoExpression as isDoExpression, indexLegacy_d_isDoWhileStatement as isDoWhileStatement, indexLegacy_d_isEmptyStatement as isEmptyStatement, indexLegacy_d_isEmptyTypeAnnotation as isEmptyTypeAnnotation, indexLegacy_d_isEnumBody as isEnumBody, indexLegacy_d_isEnumBooleanBody as isEnumBooleanBody, indexLegacy_d_isEnumBooleanMember as isEnumBooleanMember, indexLegacy_d_isEnumDeclaration as isEnumDeclaration, indexLegacy_d_isEnumDefaultedMember as isEnumDefaultedMember, indexLegacy_d_isEnumMember as isEnumMember, indexLegacy_d_isEnumNumberBody as isEnumNumberBody, indexLegacy_d_isEnumNumberMember as isEnumNumberMember, indexLegacy_d_isEnumStringBody as isEnumStringBody, indexLegacy_d_isEnumStringMember as isEnumStringMember, indexLegacy_d_isEnumSymbolBody as isEnumSymbolBody, indexLegacy_d_isExistsTypeAnnotation as isExistsTypeAnnotation, indexLegacy_d_isExportAllDeclaration as isExportAllDeclaration, indexLegacy_d_isExportDeclaration as isExportDeclaration, indexLegacy_d_isExportDefaultDeclaration as isExportDefaultDeclaration, indexLegacy_d_isExportDefaultSpecifier as isExportDefaultSpecifier, indexLegacy_d_isExportNamedDeclaration as isExportNamedDeclaration, indexLegacy_d_isExportNamespaceSpecifier as isExportNamespaceSpecifier, indexLegacy_d_isExportSpecifier as isExportSpecifier, indexLegacy_d_isExpression as isExpression, indexLegacy_d_isExpressionStatement as isExpressionStatement, indexLegacy_d_isExpressionWrapper as isExpressionWrapper, indexLegacy_d_isFile as isFile, indexLegacy_d_isFlow as isFlow, indexLegacy_d_isFlowBaseAnnotation as isFlowBaseAnnotation, indexLegacy_d_isFlowDeclaration as isFlowDeclaration, indexLegacy_d_isFlowPredicate as isFlowPredicate, indexLegacy_d_isFlowType as isFlowType, indexLegacy_d_isFor as isFor, indexLegacy_d_isForInStatement as isForInStatement, indexLegacy_d_isForOfStatement as isForOfStatement, indexLegacy_d_isForStatement as isForStatement, indexLegacy_d_isForXStatement as isForXStatement, indexLegacy_d_isFunction as isFunction, indexLegacy_d_isFunctionDeclaration as isFunctionDeclaration, indexLegacy_d_isFunctionExpression as isFunctionExpression, indexLegacy_d_isFunctionParent as isFunctionParent, indexLegacy_d_isFunctionTypeAnnotation as isFunctionTypeAnnotation, indexLegacy_d_isFunctionTypeParam as isFunctionTypeParam, indexLegacy_d_isGenericTypeAnnotation as isGenericTypeAnnotation, indexLegacy_d_isIdentifier as isIdentifier, indexLegacy_d_isIfStatement as isIfStatement, indexLegacy_d_isImmutable as isImmutable, indexLegacy_d_isImport as isImport, indexLegacy_d_isImportAttribute as isImportAttribute, indexLegacy_d_isImportDeclaration as isImportDeclaration, indexLegacy_d_isImportDefaultSpecifier as isImportDefaultSpecifier, indexLegacy_d_isImportExpression as isImportExpression, indexLegacy_d_isImportNamespaceSpecifier as isImportNamespaceSpecifier, indexLegacy_d_isImportOrExportDeclaration as isImportOrExportDeclaration, indexLegacy_d_isImportSpecifier as isImportSpecifier, indexLegacy_d_isIndexedAccessType as isIndexedAccessType, indexLegacy_d_isInferredPredicate as isInferredPredicate, indexLegacy_d_isInterfaceDeclaration as isInterfaceDeclaration, indexLegacy_d_isInterfaceExtends as isInterfaceExtends, indexLegacy_d_isInterfaceTypeAnnotation as isInterfaceTypeAnnotation, indexLegacy_d_isInterpreterDirective as isInterpreterDirective, indexLegacy_d_isIntersectionTypeAnnotation as isIntersectionTypeAnnotation, indexLegacy_d_isJSX as isJSX, indexLegacy_d_isJSXAttribute as isJSXAttribute, indexLegacy_d_isJSXClosingElement as isJSXClosingElement, indexLegacy_d_isJSXClosingFragment as isJSXClosingFragment, indexLegacy_d_isJSXElement as isJSXElement, indexLegacy_d_isJSXEmptyExpression as isJSXEmptyExpression, indexLegacy_d_isJSXExpressionContainer as isJSXExpressionContainer, indexLegacy_d_isJSXFragment as isJSXFragment, indexLegacy_d_isJSXIdentifier as isJSXIdentifier, indexLegacy_d_isJSXMemberExpression as isJSXMemberExpression, indexLegacy_d_isJSXNamespacedName as isJSXNamespacedName, indexLegacy_d_isJSXOpeningElement as isJSXOpeningElement, indexLegacy_d_isJSXOpeningFragment as isJSXOpeningFragment, indexLegacy_d_isJSXSpreadAttribute as isJSXSpreadAttribute, indexLegacy_d_isJSXSpreadChild as isJSXSpreadChild, indexLegacy_d_isJSXText as isJSXText, indexLegacy_d_isLVal as isLVal, indexLegacy_d_isLabeledStatement as isLabeledStatement, indexLegacy_d_isLet as isLet, indexLegacy_d_isLiteral as isLiteral, indexLegacy_d_isLogicalExpression as isLogicalExpression, indexLegacy_d_isLoop as isLoop, indexLegacy_d_isMemberExpression as isMemberExpression, indexLegacy_d_isMetaProperty as isMetaProperty, indexLegacy_d_isMethod as isMethod, indexLegacy_d_isMiscellaneous as isMiscellaneous, indexLegacy_d_isMixedTypeAnnotation as isMixedTypeAnnotation, indexLegacy_d_isModuleDeclaration as isModuleDeclaration, indexLegacy_d_isModuleExpression as isModuleExpression, indexLegacy_d_isModuleSpecifier as isModuleSpecifier, indexLegacy_d_isNewExpression as isNewExpression, indexLegacy_d_isNode as isNode, indexLegacy_d_isNodesEquivalent as isNodesEquivalent, indexLegacy_d_isNoop as isNoop, indexLegacy_d_isNullLiteral as isNullLiteral, indexLegacy_d_isNullLiteralTypeAnnotation as isNullLiteralTypeAnnotation, indexLegacy_d_isNullableTypeAnnotation as isNullableTypeAnnotation, indexLegacy_d_isNumberLiteral as isNumberLiteral, indexLegacy_d_isNumberLiteralTypeAnnotation as isNumberLiteralTypeAnnotation, indexLegacy_d_isNumberTypeAnnotation as isNumberTypeAnnotation, indexLegacy_d_isNumericLiteral as isNumericLiteral, indexLegacy_d_isObjectExpression as isObjectExpression, indexLegacy_d_isObjectMember as isObjectMember, indexLegacy_d_isObjectMethod as isObjectMethod, indexLegacy_d_isObjectPattern as isObjectPattern, indexLegacy_d_isObjectProperty as isObjectProperty, indexLegacy_d_isObjectTypeAnnotation as isObjectTypeAnnotation, indexLegacy_d_isObjectTypeCallProperty as isObjectTypeCallProperty, indexLegacy_d_isObjectTypeIndexer as isObjectTypeIndexer, indexLegacy_d_isObjectTypeInternalSlot as isObjectTypeInternalSlot, indexLegacy_d_isObjectTypeProperty as isObjectTypeProperty, indexLegacy_d_isObjectTypeSpreadProperty as isObjectTypeSpreadProperty, indexLegacy_d_isOpaqueType as isOpaqueType, indexLegacy_d_isOptionalCallExpression as isOptionalCallExpression, indexLegacy_d_isOptionalIndexedAccessType as isOptionalIndexedAccessType, indexLegacy_d_isOptionalMemberExpression as isOptionalMemberExpression, indexLegacy_d_isParenthesizedExpression as isParenthesizedExpression, indexLegacy_d_isPattern as isPattern, indexLegacy_d_isPatternLike as isPatternLike, indexLegacy_d_isPipelineBareFunction as isPipelineBareFunction, indexLegacy_d_isPipelinePrimaryTopicReference as isPipelinePrimaryTopicReference, indexLegacy_d_isPipelineTopicExpression as isPipelineTopicExpression, indexLegacy_d_isPlaceholder as isPlaceholder, indexLegacy_d_isPlaceholderType as isPlaceholderType, indexLegacy_d_isPrivate as isPrivate, indexLegacy_d_isPrivateName as isPrivateName, indexLegacy_d_isProgram as isProgram, indexLegacy_d_isProperty as isProperty, indexLegacy_d_isPureish as isPureish, indexLegacy_d_isQualifiedTypeIdentifier as isQualifiedTypeIdentifier, indexLegacy_d_isRecordExpression as isRecordExpression, indexLegacy_d_isReferenced as isReferenced, indexLegacy_d_isRegExpLiteral as isRegExpLiteral, indexLegacy_d_isRegexLiteral as isRegexLiteral, indexLegacy_d_isRestElement as isRestElement, indexLegacy_d_isRestProperty as isRestProperty, indexLegacy_d_isReturnStatement as isReturnStatement, indexLegacy_d_isScopable as isScopable, indexLegacy_d_isScope as isScope, indexLegacy_d_isSequenceExpression as isSequenceExpression, indexLegacy_d_isSpecifierDefault as isSpecifierDefault, indexLegacy_d_isSpreadElement as isSpreadElement, indexLegacy_d_isSpreadProperty as isSpreadProperty, indexLegacy_d_isStandardized as isStandardized, indexLegacy_d_isStatement as isStatement, indexLegacy_d_isStaticBlock as isStaticBlock, indexLegacy_d_isStringLiteral as isStringLiteral, indexLegacy_d_isStringLiteralTypeAnnotation as isStringLiteralTypeAnnotation, indexLegacy_d_isStringTypeAnnotation as isStringTypeAnnotation, indexLegacy_d_isSuper as isSuper, indexLegacy_d_isSwitchCase as isSwitchCase, indexLegacy_d_isSwitchStatement as isSwitchStatement, indexLegacy_d_isSymbolTypeAnnotation as isSymbolTypeAnnotation, indexLegacy_d_isTSAnyKeyword as isTSAnyKeyword, indexLegacy_d_isTSArrayType as isTSArrayType, indexLegacy_d_isTSAsExpression as isTSAsExpression, indexLegacy_d_isTSBaseType as isTSBaseType, indexLegacy_d_isTSBigIntKeyword as isTSBigIntKeyword, indexLegacy_d_isTSBooleanKeyword as isTSBooleanKeyword, indexLegacy_d_isTSCallSignatureDeclaration as isTSCallSignatureDeclaration, indexLegacy_d_isTSConditionalType as isTSConditionalType, indexLegacy_d_isTSConstructSignatureDeclaration as isTSConstructSignatureDeclaration, indexLegacy_d_isTSConstructorType as isTSConstructorType, indexLegacy_d_isTSDeclareFunction as isTSDeclareFunction, indexLegacy_d_isTSDeclareMethod as isTSDeclareMethod, indexLegacy_d_isTSEntityName as isTSEntityName, indexLegacy_d_isTSEnumBody as isTSEnumBody, indexLegacy_d_isTSEnumDeclaration as isTSEnumDeclaration, indexLegacy_d_isTSEnumMember as isTSEnumMember, indexLegacy_d_isTSExportAssignment as isTSExportAssignment, indexLegacy_d_isTSExpressionWithTypeArguments as isTSExpressionWithTypeArguments, indexLegacy_d_isTSExternalModuleReference as isTSExternalModuleReference, indexLegacy_d_isTSFunctionType as isTSFunctionType, indexLegacy_d_isTSImportEqualsDeclaration as isTSImportEqualsDeclaration, indexLegacy_d_isTSImportType as isTSImportType, indexLegacy_d_isTSIndexSignature as isTSIndexSignature, indexLegacy_d_isTSIndexedAccessType as isTSIndexedAccessType, indexLegacy_d_isTSInferType as isTSInferType, indexLegacy_d_isTSInstantiationExpression as isTSInstantiationExpression, indexLegacy_d_isTSInterfaceBody as isTSInterfaceBody, indexLegacy_d_isTSInterfaceDeclaration as isTSInterfaceDeclaration, indexLegacy_d_isTSIntersectionType as isTSIntersectionType, indexLegacy_d_isTSIntrinsicKeyword as isTSIntrinsicKeyword, indexLegacy_d_isTSLiteralType as isTSLiteralType, indexLegacy_d_isTSMappedType as isTSMappedType, indexLegacy_d_isTSMethodSignature as isTSMethodSignature, indexLegacy_d_isTSModuleBlock as isTSModuleBlock, indexLegacy_d_isTSModuleDeclaration as isTSModuleDeclaration, indexLegacy_d_isTSNamedTupleMember as isTSNamedTupleMember, indexLegacy_d_isTSNamespaceExportDeclaration as isTSNamespaceExportDeclaration, indexLegacy_d_isTSNeverKeyword as isTSNeverKeyword, indexLegacy_d_isTSNonNullExpression as isTSNonNullExpression, indexLegacy_d_isTSNullKeyword as isTSNullKeyword, indexLegacy_d_isTSNumberKeyword as isTSNumberKeyword, indexLegacy_d_isTSObjectKeyword as isTSObjectKeyword, indexLegacy_d_isTSOptionalType as isTSOptionalType, indexLegacy_d_isTSParameterProperty as isTSParameterProperty, indexLegacy_d_isTSParenthesizedType as isTSParenthesizedType, indexLegacy_d_isTSPropertySignature as isTSPropertySignature, indexLegacy_d_isTSQualifiedName as isTSQualifiedName, indexLegacy_d_isTSRestType as isTSRestType, indexLegacy_d_isTSSatisfiesExpression as isTSSatisfiesExpression, indexLegacy_d_isTSStringKeyword as isTSStringKeyword, indexLegacy_d_isTSSymbolKeyword as isTSSymbolKeyword, indexLegacy_d_isTSTemplateLiteralType as isTSTemplateLiteralType, indexLegacy_d_isTSThisType as isTSThisType, indexLegacy_d_isTSTupleType as isTSTupleType, indexLegacy_d_isTSType as isTSType, indexLegacy_d_isTSTypeAliasDeclaration as isTSTypeAliasDeclaration, indexLegacy_d_isTSTypeAnnotation as isTSTypeAnnotation, indexLegacy_d_isTSTypeAssertion as isTSTypeAssertion, indexLegacy_d_isTSTypeElement as isTSTypeElement, indexLegacy_d_isTSTypeLiteral as isTSTypeLiteral, indexLegacy_d_isTSTypeOperator as isTSTypeOperator, indexLegacy_d_isTSTypeParameter as isTSTypeParameter, indexLegacy_d_isTSTypeParameterDeclaration as isTSTypeParameterDeclaration, indexLegacy_d_isTSTypeParameterInstantiation as isTSTypeParameterInstantiation, indexLegacy_d_isTSTypePredicate as isTSTypePredicate, indexLegacy_d_isTSTypeQuery as isTSTypeQuery, indexLegacy_d_isTSTypeReference as isTSTypeReference, indexLegacy_d_isTSUndefinedKeyword as isTSUndefinedKeyword, indexLegacy_d_isTSUnionType as isTSUnionType, indexLegacy_d_isTSUnknownKeyword as isTSUnknownKeyword, indexLegacy_d_isTSVoidKeyword as isTSVoidKeyword, indexLegacy_d_isTaggedTemplateExpression as isTaggedTemplateExpression, indexLegacy_d_isTemplateElement as isTemplateElement, indexLegacy_d_isTemplateLiteral as isTemplateLiteral, indexLegacy_d_isTerminatorless as isTerminatorless, indexLegacy_d_isThisExpression as isThisExpression, indexLegacy_d_isThisTypeAnnotation as isThisTypeAnnotation, indexLegacy_d_isThrowStatement as isThrowStatement, indexLegacy_d_isTopicReference as isTopicReference, indexLegacy_d_isTryStatement as isTryStatement, indexLegacy_d_isTupleExpression as isTupleExpression, indexLegacy_d_isTupleTypeAnnotation as isTupleTypeAnnotation, indexLegacy_d_isType as isType, indexLegacy_d_isTypeAlias as isTypeAlias, indexLegacy_d_isTypeAnnotation as isTypeAnnotation, indexLegacy_d_isTypeCastExpression as isTypeCastExpression, indexLegacy_d_isTypeParameter as isTypeParameter, indexLegacy_d_isTypeParameterDeclaration as isTypeParameterDeclaration, indexLegacy_d_isTypeParameterInstantiation as isTypeParameterInstantiation, indexLegacy_d_isTypeScript as isTypeScript, indexLegacy_d_isTypeofTypeAnnotation as isTypeofTypeAnnotation, indexLegacy_d_isUnaryExpression as isUnaryExpression, indexLegacy_d_isUnaryLike as isUnaryLike, indexLegacy_d_isUnionTypeAnnotation as isUnionTypeAnnotation, indexLegacy_d_isUpdateExpression as isUpdateExpression, indexLegacy_d_isUserWhitespacable as isUserWhitespacable, indexLegacy_d_isV8IntrinsicIdentifier as isV8IntrinsicIdentifier, indexLegacy_d_isValidES3Identifier as isValidES3Identifier, indexLegacy_d_isValidIdentifier as isValidIdentifier, indexLegacy_d_isVar as isVar, indexLegacy_d_isVariableDeclaration as isVariableDeclaration, indexLegacy_d_isVariableDeclarator as isVariableDeclarator, indexLegacy_d_isVariance as isVariance, indexLegacy_d_isVoidTypeAnnotation as isVoidTypeAnnotation, indexLegacy_d_isWhile as isWhile, indexLegacy_d_isWhileStatement as isWhileStatement, indexLegacy_d_isWithStatement as isWithStatement, indexLegacy_d_isYieldExpression as isYieldExpression, indexLegacy_d_jsxAttribute as jsxAttribute, indexLegacy_d_jsxClosingElement as jsxClosingElement, indexLegacy_d_jsxClosingFragment as jsxClosingFragment, indexLegacy_d_jsxElement as jsxElement, indexLegacy_d_jsxEmptyExpression as jsxEmptyExpression, indexLegacy_d_jsxExpressionContainer as jsxExpressionContainer, indexLegacy_d_jsxFragment as jsxFragment, indexLegacy_d_jsxIdentifier as jsxIdentifier, indexLegacy_d_jsxMemberExpression as jsxMemberExpression, indexLegacy_d_jsxNamespacedName as jsxNamespacedName, indexLegacy_d_jsxOpeningElement as jsxOpeningElement, indexLegacy_d_jsxOpeningFragment as jsxOpeningFragment, indexLegacy_d_jsxSpreadAttribute as jsxSpreadAttribute, indexLegacy_d_jsxSpreadChild as jsxSpreadChild, indexLegacy_d_jsxText as jsxText, indexLegacy_d_labeledStatement as labeledStatement, indexLegacy_d_logicalExpression as logicalExpression, indexLegacy_d_matchesPattern as matchesPattern, indexLegacy_d_memberExpression as memberExpression, indexLegacy_d_metaProperty as metaProperty, indexLegacy_d_mixedTypeAnnotation as mixedTypeAnnotation, indexLegacy_d_moduleExpression as moduleExpression, indexLegacy_d_newExpression as newExpression, indexLegacy_d_noop as noop, indexLegacy_d_nullLiteral as nullLiteral, indexLegacy_d_nullLiteralTypeAnnotation as nullLiteralTypeAnnotation, indexLegacy_d_nullableTypeAnnotation as nullableTypeAnnotation, indexLegacy_d_numberLiteralTypeAnnotation as numberLiteralTypeAnnotation, indexLegacy_d_numberTypeAnnotation as numberTypeAnnotation, indexLegacy_d_numericLiteral as numericLiteral, indexLegacy_d_objectExpression as objectExpression, indexLegacy_d_objectMethod as objectMethod, indexLegacy_d_objectPattern as objectPattern, indexLegacy_d_objectProperty as objectProperty, indexLegacy_d_objectTypeAnnotation as objectTypeAnnotation, indexLegacy_d_objectTypeCallProperty as objectTypeCallProperty, indexLegacy_d_objectTypeIndexer as objectTypeIndexer, indexLegacy_d_objectTypeInternalSlot as objectTypeInternalSlot, indexLegacy_d_objectTypeProperty as objectTypeProperty, indexLegacy_d_objectTypeSpreadProperty as objectTypeSpreadProperty, indexLegacy_d_opaqueType as opaqueType, indexLegacy_d_optionalCallExpression as optionalCallExpression, indexLegacy_d_optionalIndexedAccessType as optionalIndexedAccessType, indexLegacy_d_optionalMemberExpression as optionalMemberExpression, indexLegacy_d_parenthesizedExpression as parenthesizedExpression, indexLegacy_d_pipelineBareFunction as pipelineBareFunction, indexLegacy_d_pipelinePrimaryTopicReference as pipelinePrimaryTopicReference, indexLegacy_d_pipelineTopicExpression as pipelineTopicExpression, indexLegacy_d_placeholder as placeholder, indexLegacy_d_prependToMemberExpression as prependToMemberExpression, indexLegacy_d_privateName as privateName, indexLegacy_d_program as program, indexLegacy_d_qualifiedTypeIdentifier as qualifiedTypeIdentifier, indexLegacy_d_recordExpression as recordExpression, indexLegacy_d_regExpLiteral as regExpLiteral, indexLegacy_d_removeComments as removeComments, indexLegacy_d_removeProperties as removeProperties, indexLegacy_d_removePropertiesDeep as removePropertiesDeep, indexLegacy_d_removeTypeDuplicates as removeTypeDuplicates, indexLegacy_d_restElement as restElement, indexLegacy_d_returnStatement as returnStatement, indexLegacy_d_sequenceExpression as sequenceExpression, indexLegacy_d_shallowEqual as shallowEqual, indexLegacy_d_spreadElement as spreadElement, indexLegacy_d_staticBlock as staticBlock, indexLegacy_d_stringLiteral as stringLiteral, indexLegacy_d_stringLiteralTypeAnnotation as stringLiteralTypeAnnotation, indexLegacy_d_stringTypeAnnotation as stringTypeAnnotation, _super as super, indexLegacy_d_switchCase as switchCase, indexLegacy_d_switchStatement as switchStatement, indexLegacy_d_symbolTypeAnnotation as symbolTypeAnnotation, indexLegacy_d_taggedTemplateExpression as taggedTemplateExpression, indexLegacy_d_templateElement as templateElement, indexLegacy_d_templateLiteral as templateLiteral, indexLegacy_d_thisExpression as thisExpression, indexLegacy_d_thisTypeAnnotation as thisTypeAnnotation, indexLegacy_d_throwStatement as throwStatement, indexLegacy_d_toBindingIdentifierName as toBindingIdentifierName, indexLegacy_d_toBlock as toBlock, indexLegacy_d_toComputedKey as toComputedKey, indexLegacy_d_toExpression as toExpression, indexLegacy_d_toIdentifier as toIdentifier, indexLegacy_d_toKeyAlias as toKeyAlias, indexLegacy_d_toSequenceExpression as toSequenceExpression, indexLegacy_d_toStatement as toStatement, indexLegacy_d_topicReference as topicReference, indexLegacy_d_traverse as traverse, indexLegacy_d_traverseFast as traverseFast, indexLegacy_d_tryStatement as tryStatement, indexLegacy_d_tsAnyKeyword as tsAnyKeyword, indexLegacy_d_tsArrayType as tsArrayType, indexLegacy_d_tsAsExpression as tsAsExpression, indexLegacy_d_tsBigIntKeyword as tsBigIntKeyword, indexLegacy_d_tsBooleanKeyword as tsBooleanKeyword, indexLegacy_d_tsCallSignatureDeclaration as tsCallSignatureDeclaration, indexLegacy_d_tsConditionalType as tsConditionalType, indexLegacy_d_tsConstructSignatureDeclaration as tsConstructSignatureDeclaration, indexLegacy_d_tsConstructorType as tsConstructorType, indexLegacy_d_tsDeclareFunction as tsDeclareFunction, indexLegacy_d_tsDeclareMethod as tsDeclareMethod, indexLegacy_d_tsEnumBody as tsEnumBody, indexLegacy_d_tsEnumDeclaration as tsEnumDeclaration, indexLegacy_d_tsEnumMember as tsEnumMember, indexLegacy_d_tsExportAssignment as tsExportAssignment, indexLegacy_d_tsExpressionWithTypeArguments as tsExpressionWithTypeArguments, indexLegacy_d_tsExternalModuleReference as tsExternalModuleReference, indexLegacy_d_tsFunctionType as tsFunctionType, indexLegacy_d_tsImportEqualsDeclaration as tsImportEqualsDeclaration, indexLegacy_d_tsImportType as tsImportType, indexLegacy_d_tsIndexSignature as tsIndexSignature, indexLegacy_d_tsIndexedAccessType as tsIndexedAccessType, indexLegacy_d_tsInferType as tsInferType, indexLegacy_d_tsInstantiationExpression as tsInstantiationExpression, indexLegacy_d_tsInterfaceBody as tsInterfaceBody, indexLegacy_d_tsInterfaceDeclaration as tsInterfaceDeclaration, indexLegacy_d_tsIntersectionType as tsIntersectionType, indexLegacy_d_tsIntrinsicKeyword as tsIntrinsicKeyword, indexLegacy_d_tsLiteralType as tsLiteralType, indexLegacy_d_tsMappedType as tsMappedType, indexLegacy_d_tsMethodSignature as tsMethodSignature, indexLegacy_d_tsModuleBlock as tsModuleBlock, indexLegacy_d_tsModuleDeclaration as tsModuleDeclaration, indexLegacy_d_tsNamedTupleMember as tsNamedTupleMember, indexLegacy_d_tsNamespaceExportDeclaration as tsNamespaceExportDeclaration, indexLegacy_d_tsNeverKeyword as tsNeverKeyword, indexLegacy_d_tsNonNullExpression as tsNonNullExpression, indexLegacy_d_tsNullKeyword as tsNullKeyword, indexLegacy_d_tsNumberKeyword as tsNumberKeyword, indexLegacy_d_tsObjectKeyword as tsObjectKeyword, indexLegacy_d_tsOptionalType as tsOptionalType, indexLegacy_d_tsParameterProperty as tsParameterProperty, indexLegacy_d_tsParenthesizedType as tsParenthesizedType, indexLegacy_d_tsPropertySignature as tsPropertySignature, indexLegacy_d_tsQualifiedName as tsQualifiedName, indexLegacy_d_tsRestType as tsRestType, indexLegacy_d_tsSatisfiesExpression as tsSatisfiesExpression, indexLegacy_d_tsStringKeyword as tsStringKeyword, indexLegacy_d_tsSymbolKeyword as tsSymbolKeyword, indexLegacy_d_tsTemplateLiteralType as tsTemplateLiteralType, indexLegacy_d_tsThisType as tsThisType, indexLegacy_d_tsTupleType as tsTupleType, indexLegacy_d_tsTypeAliasDeclaration as tsTypeAliasDeclaration, indexLegacy_d_tsTypeAnnotation as tsTypeAnnotation, indexLegacy_d_tsTypeAssertion as tsTypeAssertion, indexLegacy_d_tsTypeLiteral as tsTypeLiteral, indexLegacy_d_tsTypeOperator as tsTypeOperator, indexLegacy_d_tsTypeParameter as tsTypeParameter, indexLegacy_d_tsTypeParameterDeclaration as tsTypeParameterDeclaration, indexLegacy_d_tsTypeParameterInstantiation as tsTypeParameterInstantiation, indexLegacy_d_tsTypePredicate as tsTypePredicate, indexLegacy_d_tsTypeQuery as tsTypeQuery, indexLegacy_d_tsTypeReference as tsTypeReference, indexLegacy_d_tsUndefinedKeyword as tsUndefinedKeyword, indexLegacy_d_tsUnionType as tsUnionType, indexLegacy_d_tsUnknownKeyword as tsUnknownKeyword, indexLegacy_d_tsVoidKeyword as tsVoidKeyword, indexLegacy_d_tupleExpression as tupleExpression, indexLegacy_d_tupleTypeAnnotation as tupleTypeAnnotation, indexLegacy_d_typeAlias as typeAlias, indexLegacy_d_typeAnnotation as typeAnnotation, indexLegacy_d_typeCastExpression as typeCastExpression, indexLegacy_d_typeParameter as typeParameter, indexLegacy_d_typeParameterDeclaration as typeParameterDeclaration, indexLegacy_d_typeParameterInstantiation as typeParameterInstantiation, indexLegacy_d_typeofTypeAnnotation as typeofTypeAnnotation, indexLegacy_d_unaryExpression as unaryExpression, indexLegacy_d_unionTypeAnnotation as unionTypeAnnotation, indexLegacy_d_updateExpression as updateExpression, indexLegacy_d_v8IntrinsicIdentifier as v8IntrinsicIdentifier, indexLegacy_d_validate as validate, indexLegacy_d_valueToNode as valueToNode, indexLegacy_d_variableDeclaration as variableDeclaration, indexLegacy_d_variableDeclarator as variableDeclarator, indexLegacy_d_variance as variance, indexLegacy_d_voidTypeAnnotation as voidTypeAnnotation, indexLegacy_d_whileStatement as whileStatement, indexLegacy_d_withStatement as withStatement, indexLegacy_d_yieldExpression as yieldExpression };
4023
+ }
4024
+
4025
+ // This file is auto-generated! Do not modify it directly.
4026
+ // Run `yarn gulp bundle-dts` to re-generate it.
4027
+ /* eslint-disable @typescript-eslint/consistent-type-imports, @typescript-eslint/no-redundant-type-constituents */
4028
+
4029
+
4030
+ type BABEL_8_BREAKING = false;
4031
+ type IF_BABEL_7<V> = false extends BABEL_8_BREAKING ? V : never;
4032
+
4033
+ type Plugin$1 =
4034
+ | "asyncDoExpressions"
4035
+ | IF_BABEL_7<"asyncGenerators">
4036
+ | IF_BABEL_7<"bigInt">
4037
+ | IF_BABEL_7<"classPrivateMethods">
4038
+ | IF_BABEL_7<"classPrivateProperties">
4039
+ | IF_BABEL_7<"classProperties">
4040
+ | IF_BABEL_7<"classStaticBlock">
4041
+ | IF_BABEL_7<"decimal">
4042
+ | "decorators-legacy"
4043
+ | "deferredImportEvaluation"
4044
+ | "decoratorAutoAccessors"
4045
+ | "destructuringPrivate"
4046
+ | "deprecatedImportAssert"
4047
+ | "doExpressions"
4048
+ | IF_BABEL_7<"dynamicImport">
4049
+ | "explicitResourceManagement"
4050
+ | "exportDefaultFrom"
4051
+ | IF_BABEL_7<"exportNamespaceFrom">
4052
+ | "flow"
4053
+ | "flowComments"
4054
+ | "functionBind"
4055
+ | "functionSent"
4056
+ | "importMeta"
4057
+ | "jsx"
4058
+ | IF_BABEL_7<"jsonStrings">
4059
+ | IF_BABEL_7<"logicalAssignment">
4060
+ | IF_BABEL_7<"importAssertions">
4061
+ | IF_BABEL_7<"importReflection">
4062
+ | "moduleBlocks"
4063
+ | IF_BABEL_7<"moduleStringNames">
4064
+ | IF_BABEL_7<"nullishCoalescingOperator">
4065
+ | IF_BABEL_7<"numericSeparator">
4066
+ | IF_BABEL_7<"objectRestSpread">
4067
+ | IF_BABEL_7<"optionalCatchBinding">
4068
+ | IF_BABEL_7<"optionalChaining">
4069
+ | "partialApplication"
4070
+ | "placeholders"
4071
+ | IF_BABEL_7<"privateIn">
4072
+ | IF_BABEL_7<"regexpUnicodeSets">
4073
+ | "sourcePhaseImports"
4074
+ | "throwExpressions"
4075
+ | IF_BABEL_7<"topLevelAwait">
4076
+ | "v8intrinsic"
4077
+ | ParserPluginWithOptions[0];
4078
+
4079
+ type ParserPluginWithOptions =
4080
+ | ["decorators", DecoratorsPluginOptions]
4081
+ | ["estree", { classFeatures?: boolean }]
4082
+ | IF_BABEL_7<["importAttributes", { deprecatedAssertSyntax: boolean }]>
4083
+ | IF_BABEL_7<["moduleAttributes", { version: "may-2020" }]>
4084
+ | ["optionalChainingAssign", { version: "2023-07" }]
4085
+ | ["pipelineOperator", PipelineOperatorPluginOptions]
4086
+ | ["recordAndTuple", RecordAndTuplePluginOptions]
4087
+ | ["flow", FlowPluginOptions]
4088
+ | ["typescript", TypeScriptPluginOptions];
4089
+
4090
+ type PluginConfig = Plugin$1 | ParserPluginWithOptions;
4091
+
4092
+ interface DecoratorsPluginOptions {
4093
+ decoratorsBeforeExport?: boolean;
4094
+ allowCallParenthesized?: boolean;
4095
+ }
4096
+
4097
+ interface PipelineOperatorPluginOptions {
4098
+ proposal: BABEL_8_BREAKING extends false
4099
+ ? "minimal" | "fsharp" | "hack" | "smart"
4100
+ : "fsharp" | "hack";
4101
+ topicToken?: "%" | "#" | "@@" | "^^" | "^";
4102
+ }
4103
+
4104
+ interface RecordAndTuplePluginOptions {
4105
+ syntaxType: "bar" | "hash";
4106
+ }
4107
+
4108
+ type FlowPluginOptions = BABEL_8_BREAKING extends true
4109
+ ? {
4110
+ all?: boolean;
4111
+ enums?: boolean;
4112
+ }
4113
+ : {
4114
+ all?: boolean;
4115
+ };
4116
+
4117
+ interface TypeScriptPluginOptions {
4118
+ dts?: boolean;
4119
+ disallowAmbiguousJSXLike?: boolean;
4120
+ }
4121
+
4122
+ type Plugin = PluginConfig;
4123
+
4124
+ interface Options {
4125
+ /**
4126
+ * By default, import and export declarations can only appear at a program's top level.
4127
+ * Setting this option to true allows them anywhere where a statement is allowed.
4128
+ */
4129
+ allowImportExportEverywhere?: boolean;
4130
+ /**
4131
+ * By default, await use is not allowed outside of an async function.
4132
+ * Set this to true to accept such code.
4133
+ */
4134
+ allowAwaitOutsideFunction?: boolean;
4135
+ /**
4136
+ * By default, a return statement at the top level raises an error.
4137
+ * Set this to true to accept such code.
4138
+ */
4139
+ allowReturnOutsideFunction?: boolean;
4140
+ /**
4141
+ * By default, new.target use is not allowed outside of a function or class.
4142
+ * Set this to true to accept such code.
4143
+ */
4144
+ allowNewTargetOutsideFunction?: boolean;
4145
+ allowSuperOutsideMethod?: boolean;
4146
+ /**
4147
+ * By default, exported identifiers must refer to a declared variable.
4148
+ * Set this to true to allow export statements to reference undeclared variables.
4149
+ */
4150
+ allowUndeclaredExports?: boolean;
4151
+ /**
4152
+ * By default, yield use is not allowed outside of a generator function.
4153
+ * Set this to true to accept such code.
4154
+ */
4155
+ allowYieldOutsideFunction?: boolean;
4156
+ /**
4157
+ * By default, Babel parser JavaScript code according to Annex B syntax.
4158
+ * Set this to `false` to disable such behavior.
4159
+ */
4160
+ annexB?: boolean;
4161
+ /**
4162
+ * By default, Babel attaches comments to adjacent AST nodes.
4163
+ * When this option is set to false, comments are not attached.
4164
+ * It can provide up to 30% performance improvement when the input code has many comments.
4165
+ * @babel/eslint-parser will set it for you.
4166
+ * It is not recommended to use attachComment: false with Babel transform,
4167
+ * as doing so removes all the comments in output code, and renders annotations such as
4168
+ * /* istanbul ignore next *\/ nonfunctional.
4169
+ */
4170
+ attachComment?: boolean;
4171
+ /**
4172
+ * By default, Babel always throws an error when it finds some invalid code.
4173
+ * When this option is set to true, it will store the parsing error and
4174
+ * try to continue parsing the invalid input file.
4175
+ */
4176
+ errorRecovery?: boolean;
4177
+ /**
4178
+ * Indicate the mode the code should be parsed in.
4179
+ * Can be one of "script", "module", or "unambiguous". Defaults to "script".
4180
+ * "unambiguous" will make @babel/parser attempt to guess, based on the presence
4181
+ * of ES6 import or export statements.
4182
+ * Files with ES6 imports and exports are considered "module" and are otherwise "script".
4183
+ */
4184
+ sourceType?: "script" | "module" | "unambiguous";
4185
+ /**
4186
+ * Correlate output AST nodes with their source filename.
4187
+ * Useful when generating code and source maps from the ASTs of multiple input files.
4188
+ */
4189
+ sourceFilename?: string;
4190
+ /**
4191
+ * By default, all source indexes start from 0.
4192
+ * You can provide a start index to alternatively start with.
4193
+ * Useful for integration with other source tools.
4194
+ */
4195
+ startIndex?: number;
4196
+ /**
4197
+ * By default, the first line of code parsed is treated as line 1.
4198
+ * You can provide a line number to alternatively start with.
4199
+ * Useful for integration with other source tools.
4200
+ */
4201
+ startLine?: number;
4202
+ /**
4203
+ * By default, the parsed code is treated as if it starts from line 1, column 0.
4204
+ * You can provide a column number to alternatively start with.
4205
+ * Useful for integration with other source tools.
4206
+ */
4207
+ startColumn?: number;
4208
+ /**
4209
+ * Array containing the plugins that you want to enable.
4210
+ */
4211
+ plugins?: Plugin[];
4212
+ /**
4213
+ * Should the parser work in strict mode.
4214
+ * Defaults to true if sourceType === 'module'. Otherwise, false.
4215
+ */
4216
+ strictMode?: boolean;
4217
+ /**
4218
+ * Adds a ranges property to each node: [node.start, node.end]
4219
+ */
4220
+ ranges?: boolean;
4221
+ /**
4222
+ * Adds all parsed tokens to a tokens property on the File node.
4223
+ */
4224
+ tokens?: boolean;
4225
+ /**
4226
+ * By default, the parser adds information about parentheses by setting
4227
+ * `extra.parenthesized` to `true` as needed.
4228
+ * When this option is `true` the parser creates `ParenthesizedExpression`
4229
+ * AST nodes instead of using the `extra` property.
4230
+ */
4231
+ createParenthesizedExpressions?: boolean;
4232
+ /**
4233
+ * The default is false in Babel 7 and true in Babel 8
4234
+ * Set this to true to parse it as an `ImportExpression` node.
4235
+ * Otherwise `import(foo)` is parsed as `CallExpression(Import, [Identifier(foo)])`.
4236
+ */
4237
+ createImportExpressions?: boolean;
4238
+ }
4239
+
4240
+ type ParserOptions = Partial<Options>;
4241
+ interface ParseError {
4242
+ code: string;
4243
+ reasonCode: string;
4244
+ }
4245
+ type ParseResult<Result extends File | Expression = File> = Result & {
4246
+ errors: null | ParseError[];
4247
+ };
4248
+ /**
4249
+ * Parse the provided code as an entire ECMAScript program.
4250
+ */
4251
+ declare function parse(input: string, options?: ParserOptions): ParseResult<File>;
4252
+ declare function parseExpression(input: string, options?: ParserOptions): ParseResult<Expression>;
4253
+
4254
+ declare const tokTypes: {
4255
+ // todo(flow->ts) real token type
4256
+ [name: string]: any;
4257
+ };
6
4258
 
7
4259
  interface Location {
8
4260
  start: {
@@ -23,4 +4275,4 @@ declare namespace template {
23
4275
  export { ast };
24
4276
  }
25
4277
 
26
- export { codeFrameColumns, generate, template };
4278
+ export { type DecoratorsPluginOptions, type FlowPluginOptions, type ParseError, type ParseResult, type ParserOptions, type PluginConfig as ParserPlugin, type ParserPluginWithOptions, type PipelineOperatorPluginOptions, type RecordAndTuplePluginOptions, type TypeScriptPluginOptions, codeFrameColumns, generate, parse, parseExpression, template, tokTypes, traverse, indexLegacy_d as types };