storybook 9.0.0-beta.4 → 9.0.0-beta.6

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 (59) hide show
  1. package/assets/server/base-preview-head.html +2 -1
  2. package/dist/babel/index.cjs +15060 -14974
  3. package/dist/babel/index.d.ts +37 -18
  4. package/dist/babel/index.js +15097 -15011
  5. package/dist/bin/index.cjs +44 -44
  6. package/dist/bin/index.js +44 -44
  7. package/dist/builder-manager/index.cjs +119 -104
  8. package/dist/builder-manager/index.js +118 -102
  9. package/dist/cli/bin/index.cjs +1 -1
  10. package/dist/cli/bin/index.js +1 -1
  11. package/dist/cli/index.cjs +19438 -19340
  12. package/dist/cli/index.js +19449 -19351
  13. package/dist/client-logger/index.d.ts +2 -1
  14. package/dist/common/index.cjs +4997 -4925
  15. package/dist/common/index.js +5090 -5014
  16. package/dist/components/index.cjs +4581 -4419
  17. package/dist/components/index.d.ts +12 -12
  18. package/dist/components/index.js +3847 -3681
  19. package/dist/core-server/index.cjs +6360 -6276
  20. package/dist/core-server/index.js +6407 -6318
  21. package/dist/core-server/presets/common-manager.js +3871 -3476
  22. package/dist/core-server/presets/common-preset.cjs +2304 -2238
  23. package/dist/core-server/presets/common-preset.js +2389 -2319
  24. package/dist/docs-tools/index.cjs +484 -464
  25. package/dist/docs-tools/index.js +502 -482
  26. package/dist/highlight/index.cjs +19 -18
  27. package/dist/highlight/index.d.ts +4 -5
  28. package/dist/highlight/index.js +3 -2
  29. package/dist/highlight/preview.cjs +311 -307
  30. package/dist/highlight/preview.js +293 -289
  31. package/dist/instrumenter/index.cjs +561 -559
  32. package/dist/instrumenter/index.js +1551 -1498
  33. package/dist/manager/globals-module-info.cjs +1 -0
  34. package/dist/manager/globals-module-info.js +1 -0
  35. package/dist/manager/globals-runtime.js +19639 -19374
  36. package/dist/manager/runtime.js +4372 -4133
  37. package/dist/manager-api/index.cjs +2375 -2319
  38. package/dist/manager-api/index.js +1722 -1666
  39. package/dist/node-logger/index.cjs +25 -25
  40. package/dist/node-logger/index.js +25 -25
  41. package/dist/preview/runtime.js +12782 -12707
  42. package/dist/preview-api/index.cjs +1121 -1102
  43. package/dist/preview-api/index.js +1169 -1150
  44. package/dist/router/index.cjs +1366 -1347
  45. package/dist/router/index.js +594 -575
  46. package/dist/server-errors.cjs +6 -6
  47. package/dist/server-errors.js +6 -6
  48. package/dist/telemetry/index.cjs +696 -691
  49. package/dist/telemetry/index.js +764 -759
  50. package/dist/test/index.cjs +69 -70
  51. package/dist/test/index.d.ts +1216 -74
  52. package/dist/test/index.js +128 -130
  53. package/dist/test/preview.cjs +16 -16
  54. package/dist/test/preview.js +15 -15
  55. package/dist/theming/create.cjs +16 -17
  56. package/dist/theming/create.js +346 -228
  57. package/dist/theming/index.cjs +16 -17
  58. package/dist/theming/index.js +948 -839
  59. package/package.json +10 -17
@@ -97,6 +97,7 @@ declare function assertClassPrivateProperty(node: object | null | undefined, opt
97
97
  declare function assertClassPrivateMethod(node: object | null | undefined, opts?: object | null): asserts node is ClassPrivateMethod;
98
98
  declare function assertPrivateName(node: object | null | undefined, opts?: object | null): asserts node is PrivateName;
99
99
  declare function assertStaticBlock(node: object | null | undefined, opts?: object | null): asserts node is StaticBlock;
100
+ declare function assertImportAttribute(node: object | null | undefined, opts?: object | null): asserts node is ImportAttribute;
100
101
  declare function assertAnyTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is AnyTypeAnnotation;
101
102
  declare function assertArrayTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is ArrayTypeAnnotation;
102
103
  declare function assertBooleanTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is BooleanTypeAnnotation;
@@ -182,7 +183,6 @@ declare function assertPlaceholder(node: object | null | undefined, opts?: objec
182
183
  declare function assertV8IntrinsicIdentifier(node: object | null | undefined, opts?: object | null): asserts node is V8IntrinsicIdentifier;
183
184
  declare function assertArgumentPlaceholder(node: object | null | undefined, opts?: object | null): asserts node is ArgumentPlaceholder;
184
185
  declare function assertBindExpression(node: object | null | undefined, opts?: object | null): asserts node is BindExpression;
185
- declare function assertImportAttribute(node: object | null | undefined, opts?: object | null): asserts node is ImportAttribute;
186
186
  declare function assertDecorator(node: object | null | undefined, opts?: object | null): asserts node is Decorator;
187
187
  declare function assertDoExpression(node: object | null | undefined, opts?: object | null): asserts node is DoExpression;
188
188
  declare function assertExportDefaultSpecifier(node: object | null | undefined, opts?: object | null): asserts node is ExportDefaultSpecifier;
@@ -981,6 +981,11 @@ interface StaticBlock extends BaseNode {
981
981
  type: "StaticBlock";
982
982
  body: Array<Statement>;
983
983
  }
984
+ interface ImportAttribute extends BaseNode {
985
+ type: "ImportAttribute";
986
+ key: Identifier | StringLiteral;
987
+ value: StringLiteral;
988
+ }
984
989
  interface AnyTypeAnnotation extends BaseNode {
985
990
  type: "AnyTypeAnnotation";
986
991
  }
@@ -1405,11 +1410,6 @@ interface BindExpression extends BaseNode {
1405
1410
  object: Expression;
1406
1411
  callee: Expression;
1407
1412
  }
1408
- interface ImportAttribute extends BaseNode {
1409
- type: "ImportAttribute";
1410
- key: Identifier | StringLiteral;
1411
- value: StringLiteral;
1412
- }
1413
1413
  interface Decorator extends BaseNode {
1414
1414
  type: "Decorator";
1415
1415
  expression: Expression;
@@ -1804,7 +1804,7 @@ interface TSTypeParameter extends BaseNode {
1804
1804
  in?: boolean | null;
1805
1805
  out?: boolean | null;
1806
1806
  }
1807
- 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;
1807
+ 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;
1808
1808
  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;
1809
1809
  type Binary = BinaryExpression | LogicalExpression;
1810
1810
  type Scopable = BlockStatement | CatchClause | DoWhileStatement | ForInStatement | ForStatement | FunctionDeclaration | FunctionExpression | Program | ObjectMethod | SwitchStatement | WhileStatement | ArrowFunctionExpression | ClassExpression | ClassDeclaration | ForOfStatement | ClassMethod | ClassPrivateMethod | StaticBlock | TSModuleBlock;
@@ -2261,6 +2261,7 @@ declare function classPrivateProperty(key: PrivateName, value?: Expression | nul
2261
2261
  declare function classPrivateMethod(kind: "get" | "set" | "method" | undefined, key: PrivateName, params: Array<Identifier | Pattern | RestElement | TSParameterProperty>, body: BlockStatement, _static?: boolean): ClassPrivateMethod;
2262
2262
  declare function privateName(id: Identifier): PrivateName;
2263
2263
  declare function staticBlock(body: Array<Statement>): StaticBlock;
2264
+ declare function importAttribute(key: Identifier | StringLiteral, value: StringLiteral): ImportAttribute;
2264
2265
  declare function anyTypeAnnotation(): AnyTypeAnnotation;
2265
2266
  declare function arrayTypeAnnotation(elementType: FlowType): ArrayTypeAnnotation;
2266
2267
  declare function booleanTypeAnnotation(): BooleanTypeAnnotation;
@@ -2361,7 +2362,6 @@ declare function placeholder(expectedNode: "Identifier" | "StringLiteral" | "Exp
2361
2362
  declare function v8IntrinsicIdentifier(name: string): V8IntrinsicIdentifier;
2362
2363
  declare function argumentPlaceholder(): ArgumentPlaceholder;
2363
2364
  declare function bindExpression(object: Expression, callee: Expression): BindExpression;
2364
- declare function importAttribute(key: Identifier | StringLiteral, value: StringLiteral): ImportAttribute;
2365
2365
  declare function decorator(expression: Expression): Decorator;
2366
2366
  declare function doExpression(body: BlockStatement, async?: boolean): DoExpression;
2367
2367
  declare function exportDefaultSpecifier(exported: Identifier): ExportDefaultSpecifier;
@@ -2655,8 +2655,6 @@ declare const INHERIT_KEYS: {
2655
2655
  readonly optional: readonly ["typeAnnotation", "typeParameters", "returnType"];
2656
2656
  readonly force: readonly ["start", "loc", "end"];
2657
2657
  };
2658
- declare const BLOCK_SCOPED_SYMBOL: unique symbol;
2659
- declare const NOT_LOCAL_BINDING: unique symbol;
2660
2658
 
2661
2659
  /**
2662
2660
  * Ensure the `key` (defaults to "body") of a `node` is a block.
@@ -2707,6 +2705,7 @@ declare const _default$1: {
2707
2705
  (value: null): NullLiteral;
2708
2706
  (value: string): StringLiteral;
2709
2707
  (value: number): NumericLiteral | BinaryExpression | UnaryExpression;
2708
+ (value: bigint): BigIntLiteral;
2710
2709
  (value: RegExp): RegExpLiteral;
2711
2710
  (value: ReadonlyArray<unknown>): ArrayExpression;
2712
2711
  (value: object): ObjectExpression;
@@ -2744,7 +2743,9 @@ type Validator = ({
2744
2743
  shapeOf: {
2745
2744
  [x: string]: FieldOptions;
2746
2745
  };
2747
- } | object) & ((node: Node$1, key: string, val: any) => void);
2746
+ } | object) & ((node: Node$1, key: string | {
2747
+ toString(): string;
2748
+ }, val: any) => void);
2748
2749
  type FieldOptions = {
2749
2750
  default?: string | number | boolean | [];
2750
2751
  optional?: boolean;
@@ -2850,11 +2851,19 @@ type TraversalHandlers<T> = {
2850
2851
  */
2851
2852
  declare function traverse$2<T>(node: Node$1, handlers: TraversalHandler<T> | TraversalHandlers<T>, state?: T): void;
2852
2853
 
2854
+ declare const _skip: unique symbol;
2855
+ declare const _stop: unique symbol;
2853
2856
  /**
2854
- * A prefix AST traversal implementation meant for simple searching
2855
- * and processing.
2857
+ * A prefix AST traversal implementation meant for simple searching and processing.
2858
+ * @param enter The callback can return `traverseFast.skip` to skip the subtree of the current node, or `traverseFast.stop` to stop the traversal.
2859
+ * @returns `true` if the traversal was stopped by callback, `false` otherwise.
2856
2860
  */
2857
- declare function traverseFast<Options = object>(node: Node$1 | null | undefined, enter: (node: Node$1, opts?: Options) => void, opts?: Options): void;
2861
+ declare function traverseFast<Options = object>(node: Node$1 | null | undefined, enter: (node: Node$1, opts?: Options) => void | typeof traverseFast.skip | typeof traverseFast.stop, opts?: Options): boolean;
2862
+ declare namespace traverseFast {
2863
+ var skip: typeof _skip;
2864
+ var stop: typeof _stop;
2865
+ }
2866
+ //# sourceMappingURL=traverseFast.d.ts.map
2858
2867
 
2859
2868
  declare function shallowEqual<T extends object>(actual: object, expected: T): actual is T;
2860
2869
 
@@ -3046,6 +3055,7 @@ declare function isClassPrivateProperty(node: Node$1 | null | undefined, opts?:
3046
3055
  declare function isClassPrivateMethod(node: Node$1 | null | undefined, opts?: Opts<ClassPrivateMethod> | null): node is ClassPrivateMethod;
3047
3056
  declare function isPrivateName(node: Node$1 | null | undefined, opts?: Opts<PrivateName> | null): node is PrivateName;
3048
3057
  declare function isStaticBlock(node: Node$1 | null | undefined, opts?: Opts<StaticBlock> | null): node is StaticBlock;
3058
+ declare function isImportAttribute(node: Node$1 | null | undefined, opts?: Opts<ImportAttribute> | null): node is ImportAttribute;
3049
3059
  declare function isAnyTypeAnnotation(node: Node$1 | null | undefined, opts?: Opts<AnyTypeAnnotation> | null): node is AnyTypeAnnotation;
3050
3060
  declare function isArrayTypeAnnotation(node: Node$1 | null | undefined, opts?: Opts<ArrayTypeAnnotation> | null): node is ArrayTypeAnnotation;
3051
3061
  declare function isBooleanTypeAnnotation(node: Node$1 | null | undefined, opts?: Opts<BooleanTypeAnnotation> | null): node is BooleanTypeAnnotation;
@@ -3131,7 +3141,6 @@ declare function isPlaceholder(node: Node$1 | null | undefined, opts?: Opts<Plac
3131
3141
  declare function isV8IntrinsicIdentifier(node: Node$1 | null | undefined, opts?: Opts<V8IntrinsicIdentifier> | null): node is V8IntrinsicIdentifier;
3132
3142
  declare function isArgumentPlaceholder(node: Node$1 | null | undefined, opts?: Opts<ArgumentPlaceholder> | null): node is ArgumentPlaceholder;
3133
3143
  declare function isBindExpression(node: Node$1 | null | undefined, opts?: Opts<BindExpression> | null): node is BindExpression;
3134
- declare function isImportAttribute(node: Node$1 | null | undefined, opts?: Opts<ImportAttribute> | null): node is ImportAttribute;
3135
3144
  declare function isDecorator(node: Node$1 | null | undefined, opts?: Opts<Decorator> | null): node is Decorator;
3136
3145
  declare function isDoExpression(node: Node$1 | null | undefined, opts?: Opts<DoExpression> | null): node is DoExpression;
3137
3146
  declare function isExportDefaultSpecifier(node: Node$1 | null | undefined, opts?: Opts<ExportDefaultSpecifier> | null): node is ExportDefaultSpecifier;
@@ -3304,7 +3313,6 @@ type index_d$1_AwaitExpression = AwaitExpression;
3304
3313
  declare const index_d$1_BINARY_OPERATORS: typeof BINARY_OPERATORS;
3305
3314
  declare const index_d$1_BINARY_TYPES: typeof BINARY_TYPES;
3306
3315
  declare const index_d$1_BLOCKPARENT_TYPES: typeof BLOCKPARENT_TYPES;
3307
- declare const index_d$1_BLOCK_SCOPED_SYMBOL: typeof BLOCK_SCOPED_SYMBOL;
3308
3316
  declare const index_d$1_BLOCK_TYPES: typeof BLOCK_TYPES;
3309
3317
  declare const index_d$1_BOOLEAN_BINARY_OPERATORS: typeof BOOLEAN_BINARY_OPERATORS;
3310
3318
  declare const index_d$1_BOOLEAN_NUMBER_BINARY_OPERATORS: typeof BOOLEAN_NUMBER_BINARY_OPERATORS;
@@ -3491,7 +3499,6 @@ type index_d$1_ModuleExpression = ModuleExpression;
3491
3499
  type index_d$1_ModuleSpecifier = ModuleSpecifier;
3492
3500
  declare const index_d$1_NODE_FIELDS: typeof NODE_FIELDS;
3493
3501
  declare const index_d$1_NODE_PARENT_VALIDATIONS: typeof NODE_PARENT_VALIDATIONS;
3494
- declare const index_d$1_NOT_LOCAL_BINDING: typeof NOT_LOCAL_BINDING;
3495
3502
  declare const index_d$1_NUMBER_BINARY_OPERATORS: typeof NUMBER_BINARY_OPERATORS;
3496
3503
  declare const index_d$1_NUMBER_UNARY_OPERATORS: typeof NUMBER_UNARY_OPERATORS;
3497
3504
  type index_d$1_NewExpression = NewExpression;
@@ -4596,7 +4603,7 @@ declare const index_d$1_whileStatement: typeof whileStatement;
4596
4603
  declare const index_d$1_withStatement: typeof withStatement;
4597
4604
  declare const index_d$1_yieldExpression: typeof yieldExpression;
4598
4605
  declare namespace index_d$1 {
4599
- export { index_d$1_ACCESSOR_TYPES as ACCESSOR_TYPES, index_d$1_ALIAS_KEYS as ALIAS_KEYS, index_d$1_ASSIGNMENT_OPERATORS as ASSIGNMENT_OPERATORS, type index_d$1_Accessor as Accessor, type index_d$1_Aliases as Aliases, type index_d$1_AnyTypeAnnotation as AnyTypeAnnotation, type index_d$1_ArgumentPlaceholder as ArgumentPlaceholder, type index_d$1_ArrayExpression as ArrayExpression, type index_d$1_ArrayPattern as ArrayPattern, type index_d$1_ArrayTypeAnnotation as ArrayTypeAnnotation, type index_d$1_ArrowFunctionExpression as ArrowFunctionExpression, type index_d$1_AssignmentExpression as AssignmentExpression, type index_d$1_AssignmentPattern as AssignmentPattern, type index_d$1_AwaitExpression as AwaitExpression, index_d$1_BINARY_OPERATORS as BINARY_OPERATORS, index_d$1_BINARY_TYPES as BINARY_TYPES, index_d$1_BLOCKPARENT_TYPES as BLOCKPARENT_TYPES, index_d$1_BLOCK_SCOPED_SYMBOL as BLOCK_SCOPED_SYMBOL, index_d$1_BLOCK_TYPES as BLOCK_TYPES, index_d$1_BOOLEAN_BINARY_OPERATORS as BOOLEAN_BINARY_OPERATORS, index_d$1_BOOLEAN_NUMBER_BINARY_OPERATORS as BOOLEAN_NUMBER_BINARY_OPERATORS, index_d$1_BOOLEAN_UNARY_OPERATORS as BOOLEAN_UNARY_OPERATORS, index_d$1_BUILDER_KEYS as BUILDER_KEYS, type index_d$1_BigIntLiteral as BigIntLiteral, type index_d$1_Binary as Binary, type index_d$1_BinaryExpression as BinaryExpression, type index_d$1_BindExpression as BindExpression, type index_d$1_Block as Block, type index_d$1_BlockParent as BlockParent, type index_d$1_BlockStatement as BlockStatement, type index_d$1_BooleanLiteral as BooleanLiteral, type index_d$1_BooleanLiteralTypeAnnotation as BooleanLiteralTypeAnnotation, type index_d$1_BooleanTypeAnnotation as BooleanTypeAnnotation, type index_d$1_BreakStatement as BreakStatement, index_d$1_CLASS_TYPES as CLASS_TYPES, index_d$1_COMMENT_KEYS as COMMENT_KEYS, index_d$1_COMPARISON_BINARY_OPERATORS as COMPARISON_BINARY_OPERATORS, index_d$1_COMPLETIONSTATEMENT_TYPES as COMPLETIONSTATEMENT_TYPES, index_d$1_CONDITIONAL_TYPES as CONDITIONAL_TYPES, type index_d$1_CallExpression as CallExpression, type index_d$1_CatchClause as CatchClause, type index_d$1_Class as Class, type index_d$1_ClassAccessorProperty as ClassAccessorProperty, type index_d$1_ClassBody as ClassBody, type index_d$1_ClassDeclaration as ClassDeclaration, type index_d$1_ClassExpression as ClassExpression, type index_d$1_ClassImplements as ClassImplements, type index_d$1_ClassMethod as ClassMethod, type index_d$1_ClassPrivateMethod as ClassPrivateMethod, type index_d$1_ClassPrivateProperty as ClassPrivateProperty, type index_d$1_ClassProperty as ClassProperty, type index_d$1_Comment as Comment, type index_d$1_CommentBlock as CommentBlock, type index_d$1_CommentLine as CommentLine, type index_d$1_CommentTypeShorthand as CommentTypeShorthand, type index_d$1_CompletionStatement as CompletionStatement, type index_d$1_Conditional as Conditional, type index_d$1_ConditionalExpression as ConditionalExpression, type index_d$1_ContinueStatement as ContinueStatement, index_d$1_DECLARATION_TYPES as DECLARATION_TYPES, index_d$1_DEPRECATED_ALIASES as DEPRECATED_ALIASES, index_d$1_DEPRECATED_KEYS as DEPRECATED_KEYS, type index_d$1_DebuggerStatement as DebuggerStatement, type index_d$1_DecimalLiteral as DecimalLiteral, type index_d$1_Declaration as Declaration, type index_d$1_DeclareClass as DeclareClass, type index_d$1_DeclareExportAllDeclaration as DeclareExportAllDeclaration, type index_d$1_DeclareExportDeclaration as DeclareExportDeclaration, type index_d$1_DeclareFunction as DeclareFunction, type index_d$1_DeclareInterface as DeclareInterface, type index_d$1_DeclareModule as DeclareModule, type index_d$1_DeclareModuleExports as DeclareModuleExports, type index_d$1_DeclareOpaqueType as DeclareOpaqueType, type index_d$1_DeclareTypeAlias as DeclareTypeAlias, type index_d$1_DeclareVariable as DeclareVariable, type index_d$1_DeclaredPredicate as DeclaredPredicate, type index_d$1_Decorator as Decorator, type index_d$1_DeprecatedAliases as DeprecatedAliases, type index_d$1_Directive as Directive, type index_d$1_DirectiveLiteral as DirectiveLiteral, type index_d$1_DoExpression as DoExpression, type index_d$1_DoWhileStatement as DoWhileStatement, index_d$1_ENUMBODY_TYPES as ENUMBODY_TYPES, index_d$1_ENUMMEMBER_TYPES as ENUMMEMBER_TYPES, index_d$1_EQUALITY_BINARY_OPERATORS as EQUALITY_BINARY_OPERATORS, index_d$1_EXPORTDECLARATION_TYPES as EXPORTDECLARATION_TYPES, index_d$1_EXPRESSIONWRAPPER_TYPES as EXPRESSIONWRAPPER_TYPES, index_d$1_EXPRESSION_TYPES as EXPRESSION_TYPES, type index_d$1_EmptyStatement as EmptyStatement, type index_d$1_EmptyTypeAnnotation as EmptyTypeAnnotation, type index_d$1_EnumBody as EnumBody, type index_d$1_EnumBooleanBody as EnumBooleanBody, type index_d$1_EnumBooleanMember as EnumBooleanMember, type index_d$1_EnumDeclaration as EnumDeclaration, type index_d$1_EnumDefaultedMember as EnumDefaultedMember, type index_d$1_EnumMember as EnumMember, type index_d$1_EnumNumberBody as EnumNumberBody, type index_d$1_EnumNumberMember as EnumNumberMember, type index_d$1_EnumStringBody as EnumStringBody, type index_d$1_EnumStringMember as EnumStringMember, type index_d$1_EnumSymbolBody as EnumSymbolBody, type index_d$1_ExistsTypeAnnotation as ExistsTypeAnnotation, type index_d$1_ExportAllDeclaration as ExportAllDeclaration, type index_d$1_ExportDeclaration as ExportDeclaration, type index_d$1_ExportDefaultDeclaration as ExportDefaultDeclaration, type index_d$1_ExportDefaultSpecifier as ExportDefaultSpecifier, type index_d$1_ExportNamedDeclaration as ExportNamedDeclaration, type index_d$1_ExportNamespaceSpecifier as ExportNamespaceSpecifier, type index_d$1_ExportSpecifier as ExportSpecifier, type index_d$1_Expression as Expression, type index_d$1_ExpressionStatement as ExpressionStatement, type index_d$1_ExpressionWrapper as ExpressionWrapper, index_d$1_FLATTENABLE_KEYS as FLATTENABLE_KEYS, index_d$1_FLIPPED_ALIAS_KEYS as FLIPPED_ALIAS_KEYS, index_d$1_FLOWBASEANNOTATION_TYPES as FLOWBASEANNOTATION_TYPES, index_d$1_FLOWDECLARATION_TYPES as FLOWDECLARATION_TYPES, index_d$1_FLOWPREDICATE_TYPES as FLOWPREDICATE_TYPES, index_d$1_FLOWTYPE_TYPES as FLOWTYPE_TYPES, index_d$1_FLOW_TYPES as FLOW_TYPES, index_d$1_FORXSTATEMENT_TYPES as FORXSTATEMENT_TYPES, index_d$1_FOR_INIT_KEYS as FOR_INIT_KEYS, index_d$1_FOR_TYPES as FOR_TYPES, index_d$1_FUNCTIONPARENT_TYPES as FUNCTIONPARENT_TYPES, index_d$1_FUNCTION_TYPES as FUNCTION_TYPES, type index_d$1_FieldOptions as FieldOptions, type index_d$1_File as File, type index_d$1_Flow as Flow, type index_d$1_FlowBaseAnnotation as FlowBaseAnnotation, type index_d$1_FlowDeclaration as FlowDeclaration, type index_d$1_FlowPredicate as FlowPredicate, type index_d$1_FlowType as FlowType, type index_d$1_For as For, type index_d$1_ForInStatement as ForInStatement, type index_d$1_ForOfStatement as ForOfStatement, type index_d$1_ForStatement as ForStatement, type index_d$1_ForXStatement as ForXStatement, type index_d$1_Function as Function, type index_d$1_FunctionDeclaration as FunctionDeclaration, type index_d$1_FunctionExpression as FunctionExpression, type index_d$1_FunctionParent as FunctionParent, type index_d$1_FunctionTypeAnnotation as FunctionTypeAnnotation, type index_d$1_FunctionTypeParam as FunctionTypeParam, type index_d$1_GenericTypeAnnotation as GenericTypeAnnotation, index_d$1_IMMUTABLE_TYPES as IMMUTABLE_TYPES, index_d$1_IMPORTOREXPORTDECLARATION_TYPES as IMPORTOREXPORTDECLARATION_TYPES, index_d$1_INHERIT_KEYS as INHERIT_KEYS, type index_d$1_Identifier as Identifier, type index_d$1_IfStatement as IfStatement, type index_d$1_Immutable as Immutable, type index_d$1_Import as Import, type index_d$1_ImportAttribute as ImportAttribute, type index_d$1_ImportDeclaration as ImportDeclaration, type index_d$1_ImportDefaultSpecifier as ImportDefaultSpecifier, type index_d$1_ImportExpression as ImportExpression, type index_d$1_ImportNamespaceSpecifier as ImportNamespaceSpecifier, type index_d$1_ImportOrExportDeclaration as ImportOrExportDeclaration, type index_d$1_ImportSpecifier as ImportSpecifier, type index_d$1_IndexedAccessType as IndexedAccessType, type index_d$1_InferredPredicate as InferredPredicate, type index_d$1_InterfaceDeclaration as InterfaceDeclaration, type index_d$1_InterfaceExtends as InterfaceExtends, type index_d$1_InterfaceTypeAnnotation as InterfaceTypeAnnotation, type index_d$1_InterpreterDirective as InterpreterDirective, type index_d$1_IntersectionTypeAnnotation as IntersectionTypeAnnotation, type index_d$1_JSX as JSX, type index_d$1_JSXAttribute as JSXAttribute, type index_d$1_JSXClosingElement as JSXClosingElement, type index_d$1_JSXClosingFragment as JSXClosingFragment, type index_d$1_JSXElement as JSXElement, type index_d$1_JSXEmptyExpression as JSXEmptyExpression, type index_d$1_JSXExpressionContainer as JSXExpressionContainer, type index_d$1_JSXFragment as JSXFragment, type index_d$1_JSXIdentifier as JSXIdentifier, type index_d$1_JSXMemberExpression as JSXMemberExpression, type index_d$1_JSXNamespacedName as JSXNamespacedName, type index_d$1_JSXOpeningElement as JSXOpeningElement, type index_d$1_JSXOpeningFragment as JSXOpeningFragment, type index_d$1_JSXSpreadAttribute as JSXSpreadAttribute, type index_d$1_JSXSpreadChild as JSXSpreadChild, type index_d$1_JSXText as JSXText, index_d$1_JSX_TYPES as JSX_TYPES, index_d$1_LITERAL_TYPES as LITERAL_TYPES, index_d$1_LOGICAL_OPERATORS as LOGICAL_OPERATORS, index_d$1_LOOP_TYPES as LOOP_TYPES, index_d$1_LVAL_TYPES as LVAL_TYPES, type index_d$1_LVal as LVal, type index_d$1_LabeledStatement as LabeledStatement, type index_d$1_Literal as Literal, type index_d$1_LogicalExpression as LogicalExpression, type index_d$1_Loop as Loop, index_d$1_METHOD_TYPES as METHOD_TYPES, index_d$1_MISCELLANEOUS_TYPES as MISCELLANEOUS_TYPES, index_d$1_MODULEDECLARATION_TYPES as MODULEDECLARATION_TYPES, index_d$1_MODULESPECIFIER_TYPES as MODULESPECIFIER_TYPES, type index_d$1_MemberExpression as MemberExpression, type index_d$1_MetaProperty as MetaProperty, type index_d$1_Method as Method, type index_d$1_Miscellaneous as Miscellaneous, type index_d$1_MixedTypeAnnotation as MixedTypeAnnotation, type index_d$1_ModuleDeclaration as ModuleDeclaration, type index_d$1_ModuleExpression as ModuleExpression, type index_d$1_ModuleSpecifier as ModuleSpecifier, index_d$1_NODE_FIELDS as NODE_FIELDS, index_d$1_NODE_PARENT_VALIDATIONS as NODE_PARENT_VALIDATIONS, index_d$1_NOT_LOCAL_BINDING as NOT_LOCAL_BINDING, index_d$1_NUMBER_BINARY_OPERATORS as NUMBER_BINARY_OPERATORS, index_d$1_NUMBER_UNARY_OPERATORS as NUMBER_UNARY_OPERATORS, type index_d$1_NewExpression as NewExpression, type Node$1 as Node, type index_d$1_Noop as Noop, type index_d$1_NullLiteral as NullLiteral, type index_d$1_NullLiteralTypeAnnotation as NullLiteralTypeAnnotation, type index_d$1_NullableTypeAnnotation as NullableTypeAnnotation, type NumberLiteral$1 as NumberLiteral, type index_d$1_NumberLiteralTypeAnnotation as NumberLiteralTypeAnnotation, type index_d$1_NumberTypeAnnotation as NumberTypeAnnotation, type index_d$1_NumericLiteral as NumericLiteral, index_d$1_OBJECTMEMBER_TYPES as OBJECTMEMBER_TYPES, type index_d$1_ObjectExpression as ObjectExpression, type index_d$1_ObjectMember as ObjectMember, type index_d$1_ObjectMethod as ObjectMethod, type index_d$1_ObjectPattern as ObjectPattern, type index_d$1_ObjectProperty as ObjectProperty, type index_d$1_ObjectTypeAnnotation as ObjectTypeAnnotation, type index_d$1_ObjectTypeCallProperty as ObjectTypeCallProperty, type index_d$1_ObjectTypeIndexer as ObjectTypeIndexer, type index_d$1_ObjectTypeInternalSlot as ObjectTypeInternalSlot, type index_d$1_ObjectTypeProperty as ObjectTypeProperty, type index_d$1_ObjectTypeSpreadProperty as ObjectTypeSpreadProperty, type index_d$1_OpaqueType as OpaqueType, type index_d$1_OptionalCallExpression as OptionalCallExpression, type index_d$1_OptionalIndexedAccessType as OptionalIndexedAccessType, type index_d$1_OptionalMemberExpression as OptionalMemberExpression, index_d$1_PATTERNLIKE_TYPES as PATTERNLIKE_TYPES, index_d$1_PATTERN_TYPES as PATTERN_TYPES, index_d$1_PLACEHOLDERS as PLACEHOLDERS, index_d$1_PLACEHOLDERS_ALIAS as PLACEHOLDERS_ALIAS, index_d$1_PLACEHOLDERS_FLIPPED_ALIAS as PLACEHOLDERS_FLIPPED_ALIAS, index_d$1_PRIVATE_TYPES as PRIVATE_TYPES, index_d$1_PROPERTY_TYPES as PROPERTY_TYPES, index_d$1_PUREISH_TYPES as PUREISH_TYPES, type index_d$1_ParentMaps as ParentMaps, type index_d$1_ParenthesizedExpression as ParenthesizedExpression, type index_d$1_Pattern as Pattern, type index_d$1_PatternLike as PatternLike, type index_d$1_PipelineBareFunction as PipelineBareFunction, type index_d$1_PipelinePrimaryTopicReference as PipelinePrimaryTopicReference, type index_d$1_PipelineTopicExpression as PipelineTopicExpression, type index_d$1_Placeholder as Placeholder, type index_d$1_Private as Private, type index_d$1_PrivateName as PrivateName, type index_d$1_Program as Program, type index_d$1_Property as Property, type index_d$1_Pureish as Pureish, type index_d$1_QualifiedTypeIdentifier as QualifiedTypeIdentifier, type index_d$1_RecordExpression as RecordExpression, type index_d$1_RegExpLiteral as RegExpLiteral, type RegexLiteral$1 as RegexLiteral, type Options$1 as RemovePropertiesOptions, type index_d$1_RestElement as RestElement, type RestProperty$1 as RestProperty, type index_d$1_ReturnStatement as ReturnStatement, index_d$1_SCOPABLE_TYPES as SCOPABLE_TYPES, index_d$1_STANDARDIZED_TYPES as STANDARDIZED_TYPES, index_d$1_STATEMENT_OR_BLOCK_KEYS as STATEMENT_OR_BLOCK_KEYS, index_d$1_STATEMENT_TYPES as STATEMENT_TYPES, index_d$1_STRING_UNARY_OPERATORS as STRING_UNARY_OPERATORS, type index_d$1_Scopable as Scopable, type index_d$1_SequenceExpression as SequenceExpression, type index_d$1_SourceLocation as SourceLocation, type index_d$1_SpreadElement as SpreadElement, type SpreadProperty$1 as SpreadProperty, type index_d$1_Standardized as Standardized, type index_d$1_Statement as Statement, type index_d$1_StaticBlock as StaticBlock, type index_d$1_StringLiteral as StringLiteral, type index_d$1_StringLiteralTypeAnnotation as StringLiteralTypeAnnotation, type index_d$1_StringTypeAnnotation as StringTypeAnnotation, type index_d$1_Super as Super, type index_d$1_SwitchCase as SwitchCase, type index_d$1_SwitchStatement as SwitchStatement, type index_d$1_SymbolTypeAnnotation as SymbolTypeAnnotation, index_d$1_TERMINATORLESS_TYPES as TERMINATORLESS_TYPES, type index_d$1_TSAnyKeyword as TSAnyKeyword, type index_d$1_TSArrayType as TSArrayType, type index_d$1_TSAsExpression as TSAsExpression, index_d$1_TSBASETYPE_TYPES as TSBASETYPE_TYPES, type index_d$1_TSBaseType as TSBaseType, type index_d$1_TSBigIntKeyword as TSBigIntKeyword, type index_d$1_TSBooleanKeyword as TSBooleanKeyword, type index_d$1_TSCallSignatureDeclaration as TSCallSignatureDeclaration, type index_d$1_TSConditionalType as TSConditionalType, type index_d$1_TSConstructSignatureDeclaration as TSConstructSignatureDeclaration, type index_d$1_TSConstructorType as TSConstructorType, type index_d$1_TSDeclareFunction as TSDeclareFunction, type index_d$1_TSDeclareMethod as TSDeclareMethod, index_d$1_TSENTITYNAME_TYPES as TSENTITYNAME_TYPES, type index_d$1_TSEntityName as TSEntityName, type index_d$1_TSEnumBody as TSEnumBody, type index_d$1_TSEnumDeclaration as TSEnumDeclaration, type index_d$1_TSEnumMember as TSEnumMember, type index_d$1_TSExportAssignment as TSExportAssignment, type index_d$1_TSExpressionWithTypeArguments as TSExpressionWithTypeArguments, type index_d$1_TSExternalModuleReference as TSExternalModuleReference, type index_d$1_TSFunctionType as TSFunctionType, type index_d$1_TSImportEqualsDeclaration as TSImportEqualsDeclaration, type index_d$1_TSImportType as TSImportType, type index_d$1_TSIndexSignature as TSIndexSignature, type index_d$1_TSIndexedAccessType as TSIndexedAccessType, type index_d$1_TSInferType as TSInferType, type index_d$1_TSInstantiationExpression as TSInstantiationExpression, type index_d$1_TSInterfaceBody as TSInterfaceBody, type index_d$1_TSInterfaceDeclaration as TSInterfaceDeclaration, type index_d$1_TSIntersectionType as TSIntersectionType, type index_d$1_TSIntrinsicKeyword as TSIntrinsicKeyword, type index_d$1_TSLiteralType as TSLiteralType, type index_d$1_TSMappedType as TSMappedType, type index_d$1_TSMethodSignature as TSMethodSignature, type index_d$1_TSModuleBlock as TSModuleBlock, type index_d$1_TSModuleDeclaration as TSModuleDeclaration, type index_d$1_TSNamedTupleMember as TSNamedTupleMember, type index_d$1_TSNamespaceExportDeclaration as TSNamespaceExportDeclaration, type index_d$1_TSNeverKeyword as TSNeverKeyword, type index_d$1_TSNonNullExpression as TSNonNullExpression, type index_d$1_TSNullKeyword as TSNullKeyword, type index_d$1_TSNumberKeyword as TSNumberKeyword, type index_d$1_TSObjectKeyword as TSObjectKeyword, type index_d$1_TSOptionalType as TSOptionalType, type index_d$1_TSParameterProperty as TSParameterProperty, type index_d$1_TSParenthesizedType as TSParenthesizedType, type index_d$1_TSPropertySignature as TSPropertySignature, type index_d$1_TSQualifiedName as TSQualifiedName, type index_d$1_TSRestType as TSRestType, type index_d$1_TSSatisfiesExpression as TSSatisfiesExpression, type index_d$1_TSStringKeyword as TSStringKeyword, type index_d$1_TSSymbolKeyword as TSSymbolKeyword, index_d$1_TSTYPEELEMENT_TYPES as TSTYPEELEMENT_TYPES, index_d$1_TSTYPE_TYPES as TSTYPE_TYPES, type index_d$1_TSTemplateLiteralType as TSTemplateLiteralType, type index_d$1_TSThisType as TSThisType, type index_d$1_TSTupleType as TSTupleType, type index_d$1_TSType as TSType, type index_d$1_TSTypeAliasDeclaration as TSTypeAliasDeclaration, type index_d$1_TSTypeAnnotation as TSTypeAnnotation, type index_d$1_TSTypeAssertion as TSTypeAssertion, type index_d$1_TSTypeElement as TSTypeElement, type index_d$1_TSTypeLiteral as TSTypeLiteral, type index_d$1_TSTypeOperator as TSTypeOperator, type index_d$1_TSTypeParameter as TSTypeParameter, type index_d$1_TSTypeParameterDeclaration as TSTypeParameterDeclaration, type index_d$1_TSTypeParameterInstantiation as TSTypeParameterInstantiation, type index_d$1_TSTypePredicate as TSTypePredicate, type index_d$1_TSTypeQuery as TSTypeQuery, type index_d$1_TSTypeReference as TSTypeReference, type index_d$1_TSUndefinedKeyword as TSUndefinedKeyword, type index_d$1_TSUnionType as TSUnionType, type index_d$1_TSUnknownKeyword as TSUnknownKeyword, type index_d$1_TSVoidKeyword as TSVoidKeyword, index_d$1_TYPES as TYPES, index_d$1_TYPESCRIPT_TYPES as TYPESCRIPT_TYPES, type index_d$1_TaggedTemplateExpression as TaggedTemplateExpression, type index_d$1_TemplateElement as TemplateElement, type index_d$1_TemplateLiteral as TemplateLiteral, type index_d$1_Terminatorless as Terminatorless, type index_d$1_ThisExpression as ThisExpression, type index_d$1_ThisTypeAnnotation as ThisTypeAnnotation, type index_d$1_ThrowStatement as ThrowStatement, type index_d$1_TopicReference as TopicReference, type index_d$1_TraversalAncestors as TraversalAncestors, type index_d$1_TraversalHandler as TraversalHandler, type index_d$1_TraversalHandlers as TraversalHandlers, type index_d$1_TryStatement as TryStatement, type index_d$1_TupleExpression as TupleExpression, type index_d$1_TupleTypeAnnotation as TupleTypeAnnotation, type index_d$1_TypeAlias as TypeAlias, type index_d$1_TypeAnnotation as TypeAnnotation, type index_d$1_TypeCastExpression as TypeCastExpression, type index_d$1_TypeParameter as TypeParameter, type index_d$1_TypeParameterDeclaration as TypeParameterDeclaration, type index_d$1_TypeParameterInstantiation as TypeParameterInstantiation, type index_d$1_TypeScript as TypeScript, type index_d$1_TypeofTypeAnnotation as TypeofTypeAnnotation, index_d$1_UNARYLIKE_TYPES as UNARYLIKE_TYPES, index_d$1_UNARY_OPERATORS as UNARY_OPERATORS, index_d$1_UPDATE_OPERATORS as UPDATE_OPERATORS, index_d$1_USERWHITESPACABLE_TYPES as USERWHITESPACABLE_TYPES, type index_d$1_UnaryExpression as UnaryExpression, type index_d$1_UnaryLike as UnaryLike, type index_d$1_UnionTypeAnnotation as UnionTypeAnnotation, type index_d$1_UpdateExpression as UpdateExpression, type index_d$1_UserWhitespacable as UserWhitespacable, type index_d$1_V8IntrinsicIdentifier as V8IntrinsicIdentifier, index_d$1_VISITOR_KEYS as VISITOR_KEYS, type index_d$1_VariableDeclaration as VariableDeclaration, type index_d$1_VariableDeclarator as VariableDeclarator, type index_d$1_Variance as Variance, type index_d$1_VoidTypeAnnotation as VoidTypeAnnotation, index_d$1_WHILE_TYPES as WHILE_TYPES, type index_d$1_While as While, type index_d$1_WhileStatement as WhileStatement, type index_d$1_WithStatement as WithStatement, type index_d$1_YieldExpression as YieldExpression, deprecationWarning as __internal__deprecationWarning, index_d$1_addComment as addComment, index_d$1_addComments as addComments, index_d$1_anyTypeAnnotation as anyTypeAnnotation, index_d$1_appendToMemberExpression as appendToMemberExpression, index_d$1_argumentPlaceholder as argumentPlaceholder, index_d$1_arrayExpression as arrayExpression, index_d$1_arrayPattern as arrayPattern, index_d$1_arrayTypeAnnotation as arrayTypeAnnotation, index_d$1_arrowFunctionExpression as arrowFunctionExpression, index_d$1_assertAccessor as assertAccessor, index_d$1_assertAnyTypeAnnotation as assertAnyTypeAnnotation, index_d$1_assertArgumentPlaceholder as assertArgumentPlaceholder, index_d$1_assertArrayExpression as assertArrayExpression, index_d$1_assertArrayPattern as assertArrayPattern, index_d$1_assertArrayTypeAnnotation as assertArrayTypeAnnotation, index_d$1_assertArrowFunctionExpression as assertArrowFunctionExpression, index_d$1_assertAssignmentExpression as assertAssignmentExpression, index_d$1_assertAssignmentPattern as assertAssignmentPattern, index_d$1_assertAwaitExpression as assertAwaitExpression, index_d$1_assertBigIntLiteral as assertBigIntLiteral, index_d$1_assertBinary as assertBinary, index_d$1_assertBinaryExpression as assertBinaryExpression, index_d$1_assertBindExpression as assertBindExpression, index_d$1_assertBlock as assertBlock, index_d$1_assertBlockParent as assertBlockParent, index_d$1_assertBlockStatement as assertBlockStatement, index_d$1_assertBooleanLiteral as assertBooleanLiteral, index_d$1_assertBooleanLiteralTypeAnnotation as assertBooleanLiteralTypeAnnotation, index_d$1_assertBooleanTypeAnnotation as assertBooleanTypeAnnotation, index_d$1_assertBreakStatement as assertBreakStatement, index_d$1_assertCallExpression as assertCallExpression, index_d$1_assertCatchClause as assertCatchClause, index_d$1_assertClass as assertClass, index_d$1_assertClassAccessorProperty as assertClassAccessorProperty, index_d$1_assertClassBody as assertClassBody, index_d$1_assertClassDeclaration as assertClassDeclaration, index_d$1_assertClassExpression as assertClassExpression, index_d$1_assertClassImplements as assertClassImplements, index_d$1_assertClassMethod as assertClassMethod, index_d$1_assertClassPrivateMethod as assertClassPrivateMethod, index_d$1_assertClassPrivateProperty as assertClassPrivateProperty, index_d$1_assertClassProperty as assertClassProperty, index_d$1_assertCompletionStatement as assertCompletionStatement, index_d$1_assertConditional as assertConditional, index_d$1_assertConditionalExpression as assertConditionalExpression, index_d$1_assertContinueStatement as assertContinueStatement, index_d$1_assertDebuggerStatement as assertDebuggerStatement, index_d$1_assertDecimalLiteral as assertDecimalLiteral, index_d$1_assertDeclaration as assertDeclaration, index_d$1_assertDeclareClass as assertDeclareClass, index_d$1_assertDeclareExportAllDeclaration as assertDeclareExportAllDeclaration, index_d$1_assertDeclareExportDeclaration as assertDeclareExportDeclaration, index_d$1_assertDeclareFunction as assertDeclareFunction, index_d$1_assertDeclareInterface as assertDeclareInterface, index_d$1_assertDeclareModule as assertDeclareModule, index_d$1_assertDeclareModuleExports as assertDeclareModuleExports, index_d$1_assertDeclareOpaqueType as assertDeclareOpaqueType, index_d$1_assertDeclareTypeAlias as assertDeclareTypeAlias, index_d$1_assertDeclareVariable as assertDeclareVariable, index_d$1_assertDeclaredPredicate as assertDeclaredPredicate, index_d$1_assertDecorator as assertDecorator, index_d$1_assertDirective as assertDirective, index_d$1_assertDirectiveLiteral as assertDirectiveLiteral, index_d$1_assertDoExpression as assertDoExpression, index_d$1_assertDoWhileStatement as assertDoWhileStatement, index_d$1_assertEmptyStatement as assertEmptyStatement, index_d$1_assertEmptyTypeAnnotation as assertEmptyTypeAnnotation, index_d$1_assertEnumBody as assertEnumBody, index_d$1_assertEnumBooleanBody as assertEnumBooleanBody, index_d$1_assertEnumBooleanMember as assertEnumBooleanMember, index_d$1_assertEnumDeclaration as assertEnumDeclaration, index_d$1_assertEnumDefaultedMember as assertEnumDefaultedMember, index_d$1_assertEnumMember as assertEnumMember, index_d$1_assertEnumNumberBody as assertEnumNumberBody, index_d$1_assertEnumNumberMember as assertEnumNumberMember, index_d$1_assertEnumStringBody as assertEnumStringBody, index_d$1_assertEnumStringMember as assertEnumStringMember, index_d$1_assertEnumSymbolBody as assertEnumSymbolBody, index_d$1_assertExistsTypeAnnotation as assertExistsTypeAnnotation, index_d$1_assertExportAllDeclaration as assertExportAllDeclaration, index_d$1_assertExportDeclaration as assertExportDeclaration, index_d$1_assertExportDefaultDeclaration as assertExportDefaultDeclaration, index_d$1_assertExportDefaultSpecifier as assertExportDefaultSpecifier, index_d$1_assertExportNamedDeclaration as assertExportNamedDeclaration, index_d$1_assertExportNamespaceSpecifier as assertExportNamespaceSpecifier, index_d$1_assertExportSpecifier as assertExportSpecifier, index_d$1_assertExpression as assertExpression, index_d$1_assertExpressionStatement as assertExpressionStatement, index_d$1_assertExpressionWrapper as assertExpressionWrapper, index_d$1_assertFile as assertFile, index_d$1_assertFlow as assertFlow, index_d$1_assertFlowBaseAnnotation as assertFlowBaseAnnotation, index_d$1_assertFlowDeclaration as assertFlowDeclaration, index_d$1_assertFlowPredicate as assertFlowPredicate, index_d$1_assertFlowType as assertFlowType, index_d$1_assertFor as assertFor, index_d$1_assertForInStatement as assertForInStatement, index_d$1_assertForOfStatement as assertForOfStatement, index_d$1_assertForStatement as assertForStatement, index_d$1_assertForXStatement as assertForXStatement, index_d$1_assertFunction as assertFunction, index_d$1_assertFunctionDeclaration as assertFunctionDeclaration, index_d$1_assertFunctionExpression as assertFunctionExpression, index_d$1_assertFunctionParent as assertFunctionParent, index_d$1_assertFunctionTypeAnnotation as assertFunctionTypeAnnotation, index_d$1_assertFunctionTypeParam as assertFunctionTypeParam, index_d$1_assertGenericTypeAnnotation as assertGenericTypeAnnotation, index_d$1_assertIdentifier as assertIdentifier, index_d$1_assertIfStatement as assertIfStatement, index_d$1_assertImmutable as assertImmutable, index_d$1_assertImport as assertImport, index_d$1_assertImportAttribute as assertImportAttribute, index_d$1_assertImportDeclaration as assertImportDeclaration, index_d$1_assertImportDefaultSpecifier as assertImportDefaultSpecifier, index_d$1_assertImportExpression as assertImportExpression, index_d$1_assertImportNamespaceSpecifier as assertImportNamespaceSpecifier, index_d$1_assertImportOrExportDeclaration as assertImportOrExportDeclaration, index_d$1_assertImportSpecifier as assertImportSpecifier, index_d$1_assertIndexedAccessType as assertIndexedAccessType, index_d$1_assertInferredPredicate as assertInferredPredicate, index_d$1_assertInterfaceDeclaration as assertInterfaceDeclaration, index_d$1_assertInterfaceExtends as assertInterfaceExtends, index_d$1_assertInterfaceTypeAnnotation as assertInterfaceTypeAnnotation, index_d$1_assertInterpreterDirective as assertInterpreterDirective, index_d$1_assertIntersectionTypeAnnotation as assertIntersectionTypeAnnotation, index_d$1_assertJSX as assertJSX, index_d$1_assertJSXAttribute as assertJSXAttribute, index_d$1_assertJSXClosingElement as assertJSXClosingElement, index_d$1_assertJSXClosingFragment as assertJSXClosingFragment, index_d$1_assertJSXElement as assertJSXElement, index_d$1_assertJSXEmptyExpression as assertJSXEmptyExpression, index_d$1_assertJSXExpressionContainer as assertJSXExpressionContainer, index_d$1_assertJSXFragment as assertJSXFragment, index_d$1_assertJSXIdentifier as assertJSXIdentifier, index_d$1_assertJSXMemberExpression as assertJSXMemberExpression, index_d$1_assertJSXNamespacedName as assertJSXNamespacedName, index_d$1_assertJSXOpeningElement as assertJSXOpeningElement, index_d$1_assertJSXOpeningFragment as assertJSXOpeningFragment, index_d$1_assertJSXSpreadAttribute as assertJSXSpreadAttribute, index_d$1_assertJSXSpreadChild as assertJSXSpreadChild, index_d$1_assertJSXText as assertJSXText, index_d$1_assertLVal as assertLVal, index_d$1_assertLabeledStatement as assertLabeledStatement, index_d$1_assertLiteral as assertLiteral, index_d$1_assertLogicalExpression as assertLogicalExpression, index_d$1_assertLoop as assertLoop, index_d$1_assertMemberExpression as assertMemberExpression, index_d$1_assertMetaProperty as assertMetaProperty, index_d$1_assertMethod as assertMethod, index_d$1_assertMiscellaneous as assertMiscellaneous, index_d$1_assertMixedTypeAnnotation as assertMixedTypeAnnotation, index_d$1_assertModuleDeclaration as assertModuleDeclaration, index_d$1_assertModuleExpression as assertModuleExpression, index_d$1_assertModuleSpecifier as assertModuleSpecifier, index_d$1_assertNewExpression as assertNewExpression, index_d$1_assertNode as assertNode, index_d$1_assertNoop as assertNoop, index_d$1_assertNullLiteral as assertNullLiteral, index_d$1_assertNullLiteralTypeAnnotation as assertNullLiteralTypeAnnotation, index_d$1_assertNullableTypeAnnotation as assertNullableTypeAnnotation, index_d$1_assertNumberLiteral as assertNumberLiteral, index_d$1_assertNumberLiteralTypeAnnotation as assertNumberLiteralTypeAnnotation, index_d$1_assertNumberTypeAnnotation as assertNumberTypeAnnotation, index_d$1_assertNumericLiteral as assertNumericLiteral, index_d$1_assertObjectExpression as assertObjectExpression, index_d$1_assertObjectMember as assertObjectMember, index_d$1_assertObjectMethod as assertObjectMethod, index_d$1_assertObjectPattern as assertObjectPattern, index_d$1_assertObjectProperty as assertObjectProperty, index_d$1_assertObjectTypeAnnotation as assertObjectTypeAnnotation, index_d$1_assertObjectTypeCallProperty as assertObjectTypeCallProperty, index_d$1_assertObjectTypeIndexer as assertObjectTypeIndexer, index_d$1_assertObjectTypeInternalSlot as assertObjectTypeInternalSlot, index_d$1_assertObjectTypeProperty as assertObjectTypeProperty, index_d$1_assertObjectTypeSpreadProperty as assertObjectTypeSpreadProperty, index_d$1_assertOpaqueType as assertOpaqueType, index_d$1_assertOptionalCallExpression as assertOptionalCallExpression, index_d$1_assertOptionalIndexedAccessType as assertOptionalIndexedAccessType, index_d$1_assertOptionalMemberExpression as assertOptionalMemberExpression, index_d$1_assertParenthesizedExpression as assertParenthesizedExpression, index_d$1_assertPattern as assertPattern, index_d$1_assertPatternLike as assertPatternLike, index_d$1_assertPipelineBareFunction as assertPipelineBareFunction, index_d$1_assertPipelinePrimaryTopicReference as assertPipelinePrimaryTopicReference, index_d$1_assertPipelineTopicExpression as assertPipelineTopicExpression, index_d$1_assertPlaceholder as assertPlaceholder, index_d$1_assertPrivate as assertPrivate, index_d$1_assertPrivateName as assertPrivateName, index_d$1_assertProgram as assertProgram, index_d$1_assertProperty as assertProperty, index_d$1_assertPureish as assertPureish, index_d$1_assertQualifiedTypeIdentifier as assertQualifiedTypeIdentifier, index_d$1_assertRecordExpression as assertRecordExpression, index_d$1_assertRegExpLiteral as assertRegExpLiteral, index_d$1_assertRegexLiteral as assertRegexLiteral, index_d$1_assertRestElement as assertRestElement, index_d$1_assertRestProperty as assertRestProperty, index_d$1_assertReturnStatement as assertReturnStatement, index_d$1_assertScopable as assertScopable, index_d$1_assertSequenceExpression as assertSequenceExpression, index_d$1_assertSpreadElement as assertSpreadElement, index_d$1_assertSpreadProperty as assertSpreadProperty, index_d$1_assertStandardized as assertStandardized, index_d$1_assertStatement as assertStatement, index_d$1_assertStaticBlock as assertStaticBlock, index_d$1_assertStringLiteral as assertStringLiteral, index_d$1_assertStringLiteralTypeAnnotation as assertStringLiteralTypeAnnotation, index_d$1_assertStringTypeAnnotation as assertStringTypeAnnotation, index_d$1_assertSuper as assertSuper, index_d$1_assertSwitchCase as assertSwitchCase, index_d$1_assertSwitchStatement as assertSwitchStatement, index_d$1_assertSymbolTypeAnnotation as assertSymbolTypeAnnotation, index_d$1_assertTSAnyKeyword as assertTSAnyKeyword, index_d$1_assertTSArrayType as assertTSArrayType, index_d$1_assertTSAsExpression as assertTSAsExpression, index_d$1_assertTSBaseType as assertTSBaseType, index_d$1_assertTSBigIntKeyword as assertTSBigIntKeyword, index_d$1_assertTSBooleanKeyword as assertTSBooleanKeyword, index_d$1_assertTSCallSignatureDeclaration as assertTSCallSignatureDeclaration, index_d$1_assertTSConditionalType as assertTSConditionalType, index_d$1_assertTSConstructSignatureDeclaration as assertTSConstructSignatureDeclaration, index_d$1_assertTSConstructorType as assertTSConstructorType, index_d$1_assertTSDeclareFunction as assertTSDeclareFunction, index_d$1_assertTSDeclareMethod as assertTSDeclareMethod, index_d$1_assertTSEntityName as assertTSEntityName, index_d$1_assertTSEnumBody as assertTSEnumBody, index_d$1_assertTSEnumDeclaration as assertTSEnumDeclaration, index_d$1_assertTSEnumMember as assertTSEnumMember, index_d$1_assertTSExportAssignment as assertTSExportAssignment, index_d$1_assertTSExpressionWithTypeArguments as assertTSExpressionWithTypeArguments, index_d$1_assertTSExternalModuleReference as assertTSExternalModuleReference, index_d$1_assertTSFunctionType as assertTSFunctionType, index_d$1_assertTSImportEqualsDeclaration as assertTSImportEqualsDeclaration, index_d$1_assertTSImportType as assertTSImportType, index_d$1_assertTSIndexSignature as assertTSIndexSignature, index_d$1_assertTSIndexedAccessType as assertTSIndexedAccessType, index_d$1_assertTSInferType as assertTSInferType, index_d$1_assertTSInstantiationExpression as assertTSInstantiationExpression, index_d$1_assertTSInterfaceBody as assertTSInterfaceBody, index_d$1_assertTSInterfaceDeclaration as assertTSInterfaceDeclaration, index_d$1_assertTSIntersectionType as assertTSIntersectionType, index_d$1_assertTSIntrinsicKeyword as assertTSIntrinsicKeyword, index_d$1_assertTSLiteralType as assertTSLiteralType, index_d$1_assertTSMappedType as assertTSMappedType, index_d$1_assertTSMethodSignature as assertTSMethodSignature, index_d$1_assertTSModuleBlock as assertTSModuleBlock, index_d$1_assertTSModuleDeclaration as assertTSModuleDeclaration, index_d$1_assertTSNamedTupleMember as assertTSNamedTupleMember, index_d$1_assertTSNamespaceExportDeclaration as assertTSNamespaceExportDeclaration, index_d$1_assertTSNeverKeyword as assertTSNeverKeyword, index_d$1_assertTSNonNullExpression as assertTSNonNullExpression, index_d$1_assertTSNullKeyword as assertTSNullKeyword, index_d$1_assertTSNumberKeyword as assertTSNumberKeyword, index_d$1_assertTSObjectKeyword as assertTSObjectKeyword, index_d$1_assertTSOptionalType as assertTSOptionalType, index_d$1_assertTSParameterProperty as assertTSParameterProperty, index_d$1_assertTSParenthesizedType as assertTSParenthesizedType, index_d$1_assertTSPropertySignature as assertTSPropertySignature, index_d$1_assertTSQualifiedName as assertTSQualifiedName, index_d$1_assertTSRestType as assertTSRestType, index_d$1_assertTSSatisfiesExpression as assertTSSatisfiesExpression, index_d$1_assertTSStringKeyword as assertTSStringKeyword, index_d$1_assertTSSymbolKeyword as assertTSSymbolKeyword, index_d$1_assertTSTemplateLiteralType as assertTSTemplateLiteralType, index_d$1_assertTSThisType as assertTSThisType, index_d$1_assertTSTupleType as assertTSTupleType, index_d$1_assertTSType as assertTSType, index_d$1_assertTSTypeAliasDeclaration as assertTSTypeAliasDeclaration, index_d$1_assertTSTypeAnnotation as assertTSTypeAnnotation, index_d$1_assertTSTypeAssertion as assertTSTypeAssertion, index_d$1_assertTSTypeElement as assertTSTypeElement, index_d$1_assertTSTypeLiteral as assertTSTypeLiteral, index_d$1_assertTSTypeOperator as assertTSTypeOperator, index_d$1_assertTSTypeParameter as assertTSTypeParameter, index_d$1_assertTSTypeParameterDeclaration as assertTSTypeParameterDeclaration, index_d$1_assertTSTypeParameterInstantiation as assertTSTypeParameterInstantiation, index_d$1_assertTSTypePredicate as assertTSTypePredicate, index_d$1_assertTSTypeQuery as assertTSTypeQuery, index_d$1_assertTSTypeReference as assertTSTypeReference, index_d$1_assertTSUndefinedKeyword as assertTSUndefinedKeyword, index_d$1_assertTSUnionType as assertTSUnionType, index_d$1_assertTSUnknownKeyword as assertTSUnknownKeyword, index_d$1_assertTSVoidKeyword as assertTSVoidKeyword, index_d$1_assertTaggedTemplateExpression as assertTaggedTemplateExpression, index_d$1_assertTemplateElement as assertTemplateElement, index_d$1_assertTemplateLiteral as assertTemplateLiteral, index_d$1_assertTerminatorless as assertTerminatorless, index_d$1_assertThisExpression as assertThisExpression, index_d$1_assertThisTypeAnnotation as assertThisTypeAnnotation, index_d$1_assertThrowStatement as assertThrowStatement, index_d$1_assertTopicReference as assertTopicReference, index_d$1_assertTryStatement as assertTryStatement, index_d$1_assertTupleExpression as assertTupleExpression, index_d$1_assertTupleTypeAnnotation as assertTupleTypeAnnotation, index_d$1_assertTypeAlias as assertTypeAlias, index_d$1_assertTypeAnnotation as assertTypeAnnotation, index_d$1_assertTypeCastExpression as assertTypeCastExpression, index_d$1_assertTypeParameter as assertTypeParameter, index_d$1_assertTypeParameterDeclaration as assertTypeParameterDeclaration, index_d$1_assertTypeParameterInstantiation as assertTypeParameterInstantiation, index_d$1_assertTypeScript as assertTypeScript, index_d$1_assertTypeofTypeAnnotation as assertTypeofTypeAnnotation, index_d$1_assertUnaryExpression as assertUnaryExpression, index_d$1_assertUnaryLike as assertUnaryLike, index_d$1_assertUnionTypeAnnotation as assertUnionTypeAnnotation, index_d$1_assertUpdateExpression as assertUpdateExpression, index_d$1_assertUserWhitespacable as assertUserWhitespacable, index_d$1_assertV8IntrinsicIdentifier as assertV8IntrinsicIdentifier, index_d$1_assertVariableDeclaration as assertVariableDeclaration, index_d$1_assertVariableDeclarator as assertVariableDeclarator, index_d$1_assertVariance as assertVariance, index_d$1_assertVoidTypeAnnotation as assertVoidTypeAnnotation, index_d$1_assertWhile as assertWhile, index_d$1_assertWhileStatement as assertWhileStatement, index_d$1_assertWithStatement as assertWithStatement, index_d$1_assertYieldExpression as assertYieldExpression, index_d$1_assignmentExpression as assignmentExpression, index_d$1_assignmentPattern as assignmentPattern, index_d$1_awaitExpression as awaitExpression, index_d$1_bigIntLiteral as bigIntLiteral, index_d$1_binaryExpression as binaryExpression, index_d$1_bindExpression as bindExpression, index_d$1_blockStatement as blockStatement, index_d$1_booleanLiteral as booleanLiteral, index_d$1_booleanLiteralTypeAnnotation as booleanLiteralTypeAnnotation, index_d$1_booleanTypeAnnotation as booleanTypeAnnotation, index_d$1_breakStatement as breakStatement, index_d$1_buildMatchMemberExpression as buildMatchMemberExpression, index_d$1_buildUndefinedNode as buildUndefinedNode, index_d$1_callExpression as callExpression, index_d$1_catchClause as catchClause, index_d$1_classAccessorProperty as classAccessorProperty, index_d$1_classBody as classBody, index_d$1_classDeclaration as classDeclaration, index_d$1_classExpression as classExpression, index_d$1_classImplements as classImplements, index_d$1_classMethod as classMethod, index_d$1_classPrivateMethod as classPrivateMethod, index_d$1_classPrivateProperty as classPrivateProperty, index_d$1_classProperty as classProperty, index_d$1_clone as clone, index_d$1_cloneDeep as cloneDeep, index_d$1_cloneDeepWithoutLoc as cloneDeepWithoutLoc, index_d$1_cloneNode as cloneNode, index_d$1_cloneWithoutLoc as cloneWithoutLoc, index_d$1_conditionalExpression as conditionalExpression, index_d$1_continueStatement as continueStatement, index_d$1_createFlowUnionType as createFlowUnionType, index_d$1_createTSUnionType as createTSUnionType, _default$4 as createTypeAnnotationBasedOnTypeof, createFlowUnionType as createUnionTypeAnnotation, index_d$1_debuggerStatement as debuggerStatement, index_d$1_decimalLiteral as decimalLiteral, index_d$1_declareClass as declareClass, index_d$1_declareExportAllDeclaration as declareExportAllDeclaration, index_d$1_declareExportDeclaration as declareExportDeclaration, index_d$1_declareFunction as declareFunction, index_d$1_declareInterface as declareInterface, index_d$1_declareModule as declareModule, index_d$1_declareModuleExports as declareModuleExports, index_d$1_declareOpaqueType as declareOpaqueType, index_d$1_declareTypeAlias as declareTypeAlias, index_d$1_declareVariable as declareVariable, index_d$1_declaredPredicate as declaredPredicate, index_d$1_decorator as decorator, index_d$1_directive as directive, index_d$1_directiveLiteral as directiveLiteral, index_d$1_doExpression as doExpression, index_d$1_doWhileStatement as doWhileStatement, index_d$1_emptyStatement as emptyStatement, index_d$1_emptyTypeAnnotation as emptyTypeAnnotation, index_d$1_ensureBlock as ensureBlock, index_d$1_enumBooleanBody as enumBooleanBody, index_d$1_enumBooleanMember as enumBooleanMember, index_d$1_enumDeclaration as enumDeclaration, index_d$1_enumDefaultedMember as enumDefaultedMember, index_d$1_enumNumberBody as enumNumberBody, index_d$1_enumNumberMember as enumNumberMember, index_d$1_enumStringBody as enumStringBody, index_d$1_enumStringMember as enumStringMember, index_d$1_enumSymbolBody as enumSymbolBody, index_d$1_existsTypeAnnotation as existsTypeAnnotation, index_d$1_exportAllDeclaration as exportAllDeclaration, index_d$1_exportDefaultDeclaration as exportDefaultDeclaration, index_d$1_exportDefaultSpecifier as exportDefaultSpecifier, index_d$1_exportNamedDeclaration as exportNamedDeclaration, index_d$1_exportNamespaceSpecifier as exportNamespaceSpecifier, index_d$1_exportSpecifier as exportSpecifier, index_d$1_expressionStatement as expressionStatement, index_d$1_file as file, index_d$1_forInStatement as forInStatement, index_d$1_forOfStatement as forOfStatement, index_d$1_forStatement as forStatement, index_d$1_functionDeclaration as functionDeclaration, index_d$1_functionExpression as functionExpression, index_d$1_functionTypeAnnotation as functionTypeAnnotation, index_d$1_functionTypeParam as functionTypeParam, index_d$1_genericTypeAnnotation as genericTypeAnnotation, index_d$1_getAssignmentIdentifiers as getAssignmentIdentifiers, index_d$1_getBindingIdentifiers as getBindingIdentifiers, index_d$1_getFunctionName as getFunctionName, _default as getOuterBindingIdentifiers, index_d$1_identifier as identifier, index_d$1_ifStatement as ifStatement, _import as import, index_d$1_importAttribute as importAttribute, index_d$1_importDeclaration as importDeclaration, index_d$1_importDefaultSpecifier as importDefaultSpecifier, index_d$1_importExpression as importExpression, index_d$1_importNamespaceSpecifier as importNamespaceSpecifier, index_d$1_importSpecifier as importSpecifier, index_d$1_indexedAccessType as indexedAccessType, index_d$1_inferredPredicate as inferredPredicate, index_d$1_inheritInnerComments as inheritInnerComments, index_d$1_inheritLeadingComments as inheritLeadingComments, index_d$1_inheritTrailingComments as inheritTrailingComments, index_d$1_inherits as inherits, index_d$1_inheritsComments as inheritsComments, index_d$1_interfaceDeclaration as interfaceDeclaration, index_d$1_interfaceExtends as interfaceExtends, index_d$1_interfaceTypeAnnotation as interfaceTypeAnnotation, index_d$1_interpreterDirective as interpreterDirective, index_d$1_intersectionTypeAnnotation as intersectionTypeAnnotation, index_d$1_is as is, index_d$1_isAccessor as isAccessor, index_d$1_isAnyTypeAnnotation as isAnyTypeAnnotation, index_d$1_isArgumentPlaceholder as isArgumentPlaceholder, index_d$1_isArrayExpression as isArrayExpression, index_d$1_isArrayPattern as isArrayPattern, index_d$1_isArrayTypeAnnotation as isArrayTypeAnnotation, index_d$1_isArrowFunctionExpression as isArrowFunctionExpression, index_d$1_isAssignmentExpression as isAssignmentExpression, index_d$1_isAssignmentPattern as isAssignmentPattern, index_d$1_isAwaitExpression as isAwaitExpression, index_d$1_isBigIntLiteral as isBigIntLiteral, index_d$1_isBinary as isBinary, index_d$1_isBinaryExpression as isBinaryExpression, index_d$1_isBindExpression as isBindExpression, index_d$1_isBinding as isBinding, index_d$1_isBlock as isBlock, index_d$1_isBlockParent as isBlockParent, index_d$1_isBlockScoped as isBlockScoped, index_d$1_isBlockStatement as isBlockStatement, index_d$1_isBooleanLiteral as isBooleanLiteral, index_d$1_isBooleanLiteralTypeAnnotation as isBooleanLiteralTypeAnnotation, index_d$1_isBooleanTypeAnnotation as isBooleanTypeAnnotation, index_d$1_isBreakStatement as isBreakStatement, index_d$1_isCallExpression as isCallExpression, index_d$1_isCatchClause as isCatchClause, index_d$1_isClass as isClass, index_d$1_isClassAccessorProperty as isClassAccessorProperty, index_d$1_isClassBody as isClassBody, index_d$1_isClassDeclaration as isClassDeclaration, index_d$1_isClassExpression as isClassExpression, index_d$1_isClassImplements as isClassImplements, index_d$1_isClassMethod as isClassMethod, index_d$1_isClassPrivateMethod as isClassPrivateMethod, index_d$1_isClassPrivateProperty as isClassPrivateProperty, index_d$1_isClassProperty as isClassProperty, index_d$1_isCompletionStatement as isCompletionStatement, index_d$1_isConditional as isConditional, index_d$1_isConditionalExpression as isConditionalExpression, index_d$1_isContinueStatement as isContinueStatement, index_d$1_isDebuggerStatement as isDebuggerStatement, index_d$1_isDecimalLiteral as isDecimalLiteral, index_d$1_isDeclaration as isDeclaration, index_d$1_isDeclareClass as isDeclareClass, index_d$1_isDeclareExportAllDeclaration as isDeclareExportAllDeclaration, index_d$1_isDeclareExportDeclaration as isDeclareExportDeclaration, index_d$1_isDeclareFunction as isDeclareFunction, index_d$1_isDeclareInterface as isDeclareInterface, index_d$1_isDeclareModule as isDeclareModule, index_d$1_isDeclareModuleExports as isDeclareModuleExports, index_d$1_isDeclareOpaqueType as isDeclareOpaqueType, index_d$1_isDeclareTypeAlias as isDeclareTypeAlias, index_d$1_isDeclareVariable as isDeclareVariable, index_d$1_isDeclaredPredicate as isDeclaredPredicate, index_d$1_isDecorator as isDecorator, index_d$1_isDirective as isDirective, index_d$1_isDirectiveLiteral as isDirectiveLiteral, index_d$1_isDoExpression as isDoExpression, index_d$1_isDoWhileStatement as isDoWhileStatement, index_d$1_isEmptyStatement as isEmptyStatement, index_d$1_isEmptyTypeAnnotation as isEmptyTypeAnnotation, index_d$1_isEnumBody as isEnumBody, index_d$1_isEnumBooleanBody as isEnumBooleanBody, index_d$1_isEnumBooleanMember as isEnumBooleanMember, index_d$1_isEnumDeclaration as isEnumDeclaration, index_d$1_isEnumDefaultedMember as isEnumDefaultedMember, index_d$1_isEnumMember as isEnumMember, index_d$1_isEnumNumberBody as isEnumNumberBody, index_d$1_isEnumNumberMember as isEnumNumberMember, index_d$1_isEnumStringBody as isEnumStringBody, index_d$1_isEnumStringMember as isEnumStringMember, index_d$1_isEnumSymbolBody as isEnumSymbolBody, index_d$1_isExistsTypeAnnotation as isExistsTypeAnnotation, index_d$1_isExportAllDeclaration as isExportAllDeclaration, index_d$1_isExportDeclaration as isExportDeclaration, index_d$1_isExportDefaultDeclaration as isExportDefaultDeclaration, index_d$1_isExportDefaultSpecifier as isExportDefaultSpecifier, index_d$1_isExportNamedDeclaration as isExportNamedDeclaration, index_d$1_isExportNamespaceSpecifier as isExportNamespaceSpecifier, index_d$1_isExportSpecifier as isExportSpecifier, index_d$1_isExpression as isExpression, index_d$1_isExpressionStatement as isExpressionStatement, index_d$1_isExpressionWrapper as isExpressionWrapper, index_d$1_isFile as isFile, index_d$1_isFlow as isFlow, index_d$1_isFlowBaseAnnotation as isFlowBaseAnnotation, index_d$1_isFlowDeclaration as isFlowDeclaration, index_d$1_isFlowPredicate as isFlowPredicate, index_d$1_isFlowType as isFlowType, index_d$1_isFor as isFor, index_d$1_isForInStatement as isForInStatement, index_d$1_isForOfStatement as isForOfStatement, index_d$1_isForStatement as isForStatement, index_d$1_isForXStatement as isForXStatement, index_d$1_isFunction as isFunction, index_d$1_isFunctionDeclaration as isFunctionDeclaration, index_d$1_isFunctionExpression as isFunctionExpression, index_d$1_isFunctionParent as isFunctionParent, index_d$1_isFunctionTypeAnnotation as isFunctionTypeAnnotation, index_d$1_isFunctionTypeParam as isFunctionTypeParam, index_d$1_isGenericTypeAnnotation as isGenericTypeAnnotation, index_d$1_isIdentifier as isIdentifier, index_d$1_isIfStatement as isIfStatement, index_d$1_isImmutable as isImmutable, index_d$1_isImport as isImport, index_d$1_isImportAttribute as isImportAttribute, index_d$1_isImportDeclaration as isImportDeclaration, index_d$1_isImportDefaultSpecifier as isImportDefaultSpecifier, index_d$1_isImportExpression as isImportExpression, index_d$1_isImportNamespaceSpecifier as isImportNamespaceSpecifier, index_d$1_isImportOrExportDeclaration as isImportOrExportDeclaration, index_d$1_isImportSpecifier as isImportSpecifier, index_d$1_isIndexedAccessType as isIndexedAccessType, index_d$1_isInferredPredicate as isInferredPredicate, index_d$1_isInterfaceDeclaration as isInterfaceDeclaration, index_d$1_isInterfaceExtends as isInterfaceExtends, index_d$1_isInterfaceTypeAnnotation as isInterfaceTypeAnnotation, index_d$1_isInterpreterDirective as isInterpreterDirective, index_d$1_isIntersectionTypeAnnotation as isIntersectionTypeAnnotation, index_d$1_isJSX as isJSX, index_d$1_isJSXAttribute as isJSXAttribute, index_d$1_isJSXClosingElement as isJSXClosingElement, index_d$1_isJSXClosingFragment as isJSXClosingFragment, index_d$1_isJSXElement as isJSXElement, index_d$1_isJSXEmptyExpression as isJSXEmptyExpression, index_d$1_isJSXExpressionContainer as isJSXExpressionContainer, index_d$1_isJSXFragment as isJSXFragment, index_d$1_isJSXIdentifier as isJSXIdentifier, index_d$1_isJSXMemberExpression as isJSXMemberExpression, index_d$1_isJSXNamespacedName as isJSXNamespacedName, index_d$1_isJSXOpeningElement as isJSXOpeningElement, index_d$1_isJSXOpeningFragment as isJSXOpeningFragment, index_d$1_isJSXSpreadAttribute as isJSXSpreadAttribute, index_d$1_isJSXSpreadChild as isJSXSpreadChild, index_d$1_isJSXText as isJSXText, index_d$1_isLVal as isLVal, index_d$1_isLabeledStatement as isLabeledStatement, index_d$1_isLet as isLet, index_d$1_isLiteral as isLiteral, index_d$1_isLogicalExpression as isLogicalExpression, index_d$1_isLoop as isLoop, index_d$1_isMemberExpression as isMemberExpression, index_d$1_isMetaProperty as isMetaProperty, index_d$1_isMethod as isMethod, index_d$1_isMiscellaneous as isMiscellaneous, index_d$1_isMixedTypeAnnotation as isMixedTypeAnnotation, index_d$1_isModuleDeclaration as isModuleDeclaration, index_d$1_isModuleExpression as isModuleExpression, index_d$1_isModuleSpecifier as isModuleSpecifier, index_d$1_isNewExpression as isNewExpression, index_d$1_isNode as isNode, index_d$1_isNodesEquivalent as isNodesEquivalent, index_d$1_isNoop as isNoop, index_d$1_isNullLiteral as isNullLiteral, index_d$1_isNullLiteralTypeAnnotation as isNullLiteralTypeAnnotation, index_d$1_isNullableTypeAnnotation as isNullableTypeAnnotation, index_d$1_isNumberLiteral as isNumberLiteral, index_d$1_isNumberLiteralTypeAnnotation as isNumberLiteralTypeAnnotation, index_d$1_isNumberTypeAnnotation as isNumberTypeAnnotation, index_d$1_isNumericLiteral as isNumericLiteral, index_d$1_isObjectExpression as isObjectExpression, index_d$1_isObjectMember as isObjectMember, index_d$1_isObjectMethod as isObjectMethod, index_d$1_isObjectPattern as isObjectPattern, index_d$1_isObjectProperty as isObjectProperty, index_d$1_isObjectTypeAnnotation as isObjectTypeAnnotation, index_d$1_isObjectTypeCallProperty as isObjectTypeCallProperty, index_d$1_isObjectTypeIndexer as isObjectTypeIndexer, index_d$1_isObjectTypeInternalSlot as isObjectTypeInternalSlot, index_d$1_isObjectTypeProperty as isObjectTypeProperty, index_d$1_isObjectTypeSpreadProperty as isObjectTypeSpreadProperty, index_d$1_isOpaqueType as isOpaqueType, index_d$1_isOptionalCallExpression as isOptionalCallExpression, index_d$1_isOptionalIndexedAccessType as isOptionalIndexedAccessType, index_d$1_isOptionalMemberExpression as isOptionalMemberExpression, index_d$1_isParenthesizedExpression as isParenthesizedExpression, index_d$1_isPattern as isPattern, index_d$1_isPatternLike as isPatternLike, index_d$1_isPipelineBareFunction as isPipelineBareFunction, index_d$1_isPipelinePrimaryTopicReference as isPipelinePrimaryTopicReference, index_d$1_isPipelineTopicExpression as isPipelineTopicExpression, index_d$1_isPlaceholder as isPlaceholder, index_d$1_isPlaceholderType as isPlaceholderType, index_d$1_isPrivate as isPrivate, index_d$1_isPrivateName as isPrivateName, index_d$1_isProgram as isProgram, index_d$1_isProperty as isProperty, index_d$1_isPureish as isPureish, index_d$1_isQualifiedTypeIdentifier as isQualifiedTypeIdentifier, index_d$1_isRecordExpression as isRecordExpression, index_d$1_isReferenced as isReferenced, index_d$1_isRegExpLiteral as isRegExpLiteral, index_d$1_isRegexLiteral as isRegexLiteral, index_d$1_isRestElement as isRestElement, index_d$1_isRestProperty as isRestProperty, index_d$1_isReturnStatement as isReturnStatement, index_d$1_isScopable as isScopable, index_d$1_isScope as isScope, index_d$1_isSequenceExpression as isSequenceExpression, index_d$1_isSpecifierDefault as isSpecifierDefault, index_d$1_isSpreadElement as isSpreadElement, index_d$1_isSpreadProperty as isSpreadProperty, index_d$1_isStandardized as isStandardized, index_d$1_isStatement as isStatement, index_d$1_isStaticBlock as isStaticBlock, index_d$1_isStringLiteral as isStringLiteral, index_d$1_isStringLiteralTypeAnnotation as isStringLiteralTypeAnnotation, index_d$1_isStringTypeAnnotation as isStringTypeAnnotation, index_d$1_isSuper as isSuper, index_d$1_isSwitchCase as isSwitchCase, index_d$1_isSwitchStatement as isSwitchStatement, index_d$1_isSymbolTypeAnnotation as isSymbolTypeAnnotation, index_d$1_isTSAnyKeyword as isTSAnyKeyword, index_d$1_isTSArrayType as isTSArrayType, index_d$1_isTSAsExpression as isTSAsExpression, index_d$1_isTSBaseType as isTSBaseType, index_d$1_isTSBigIntKeyword as isTSBigIntKeyword, index_d$1_isTSBooleanKeyword as isTSBooleanKeyword, index_d$1_isTSCallSignatureDeclaration as isTSCallSignatureDeclaration, index_d$1_isTSConditionalType as isTSConditionalType, index_d$1_isTSConstructSignatureDeclaration as isTSConstructSignatureDeclaration, index_d$1_isTSConstructorType as isTSConstructorType, index_d$1_isTSDeclareFunction as isTSDeclareFunction, index_d$1_isTSDeclareMethod as isTSDeclareMethod, index_d$1_isTSEntityName as isTSEntityName, index_d$1_isTSEnumBody as isTSEnumBody, index_d$1_isTSEnumDeclaration as isTSEnumDeclaration, index_d$1_isTSEnumMember as isTSEnumMember, index_d$1_isTSExportAssignment as isTSExportAssignment, index_d$1_isTSExpressionWithTypeArguments as isTSExpressionWithTypeArguments, index_d$1_isTSExternalModuleReference as isTSExternalModuleReference, index_d$1_isTSFunctionType as isTSFunctionType, index_d$1_isTSImportEqualsDeclaration as isTSImportEqualsDeclaration, index_d$1_isTSImportType as isTSImportType, index_d$1_isTSIndexSignature as isTSIndexSignature, index_d$1_isTSIndexedAccessType as isTSIndexedAccessType, index_d$1_isTSInferType as isTSInferType, index_d$1_isTSInstantiationExpression as isTSInstantiationExpression, index_d$1_isTSInterfaceBody as isTSInterfaceBody, index_d$1_isTSInterfaceDeclaration as isTSInterfaceDeclaration, index_d$1_isTSIntersectionType as isTSIntersectionType, index_d$1_isTSIntrinsicKeyword as isTSIntrinsicKeyword, index_d$1_isTSLiteralType as isTSLiteralType, index_d$1_isTSMappedType as isTSMappedType, index_d$1_isTSMethodSignature as isTSMethodSignature, index_d$1_isTSModuleBlock as isTSModuleBlock, index_d$1_isTSModuleDeclaration as isTSModuleDeclaration, index_d$1_isTSNamedTupleMember as isTSNamedTupleMember, index_d$1_isTSNamespaceExportDeclaration as isTSNamespaceExportDeclaration, index_d$1_isTSNeverKeyword as isTSNeverKeyword, index_d$1_isTSNonNullExpression as isTSNonNullExpression, index_d$1_isTSNullKeyword as isTSNullKeyword, index_d$1_isTSNumberKeyword as isTSNumberKeyword, index_d$1_isTSObjectKeyword as isTSObjectKeyword, index_d$1_isTSOptionalType as isTSOptionalType, index_d$1_isTSParameterProperty as isTSParameterProperty, index_d$1_isTSParenthesizedType as isTSParenthesizedType, index_d$1_isTSPropertySignature as isTSPropertySignature, index_d$1_isTSQualifiedName as isTSQualifiedName, index_d$1_isTSRestType as isTSRestType, index_d$1_isTSSatisfiesExpression as isTSSatisfiesExpression, index_d$1_isTSStringKeyword as isTSStringKeyword, index_d$1_isTSSymbolKeyword as isTSSymbolKeyword, index_d$1_isTSTemplateLiteralType as isTSTemplateLiteralType, index_d$1_isTSThisType as isTSThisType, index_d$1_isTSTupleType as isTSTupleType, index_d$1_isTSType as isTSType, index_d$1_isTSTypeAliasDeclaration as isTSTypeAliasDeclaration, index_d$1_isTSTypeAnnotation as isTSTypeAnnotation, index_d$1_isTSTypeAssertion as isTSTypeAssertion, index_d$1_isTSTypeElement as isTSTypeElement, index_d$1_isTSTypeLiteral as isTSTypeLiteral, index_d$1_isTSTypeOperator as isTSTypeOperator, index_d$1_isTSTypeParameter as isTSTypeParameter, index_d$1_isTSTypeParameterDeclaration as isTSTypeParameterDeclaration, index_d$1_isTSTypeParameterInstantiation as isTSTypeParameterInstantiation, index_d$1_isTSTypePredicate as isTSTypePredicate, index_d$1_isTSTypeQuery as isTSTypeQuery, index_d$1_isTSTypeReference as isTSTypeReference, index_d$1_isTSUndefinedKeyword as isTSUndefinedKeyword, index_d$1_isTSUnionType as isTSUnionType, index_d$1_isTSUnknownKeyword as isTSUnknownKeyword, index_d$1_isTSVoidKeyword as isTSVoidKeyword, index_d$1_isTaggedTemplateExpression as isTaggedTemplateExpression, index_d$1_isTemplateElement as isTemplateElement, index_d$1_isTemplateLiteral as isTemplateLiteral, index_d$1_isTerminatorless as isTerminatorless, index_d$1_isThisExpression as isThisExpression, index_d$1_isThisTypeAnnotation as isThisTypeAnnotation, index_d$1_isThrowStatement as isThrowStatement, index_d$1_isTopicReference as isTopicReference, index_d$1_isTryStatement as isTryStatement, index_d$1_isTupleExpression as isTupleExpression, index_d$1_isTupleTypeAnnotation as isTupleTypeAnnotation, index_d$1_isType as isType, index_d$1_isTypeAlias as isTypeAlias, index_d$1_isTypeAnnotation as isTypeAnnotation, index_d$1_isTypeCastExpression as isTypeCastExpression, index_d$1_isTypeParameter as isTypeParameter, index_d$1_isTypeParameterDeclaration as isTypeParameterDeclaration, index_d$1_isTypeParameterInstantiation as isTypeParameterInstantiation, index_d$1_isTypeScript as isTypeScript, index_d$1_isTypeofTypeAnnotation as isTypeofTypeAnnotation, index_d$1_isUnaryExpression as isUnaryExpression, index_d$1_isUnaryLike as isUnaryLike, index_d$1_isUnionTypeAnnotation as isUnionTypeAnnotation, index_d$1_isUpdateExpression as isUpdateExpression, index_d$1_isUserWhitespacable as isUserWhitespacable, index_d$1_isV8IntrinsicIdentifier as isV8IntrinsicIdentifier, index_d$1_isValidES3Identifier as isValidES3Identifier, index_d$1_isValidIdentifier as isValidIdentifier, index_d$1_isVar as isVar, index_d$1_isVariableDeclaration as isVariableDeclaration, index_d$1_isVariableDeclarator as isVariableDeclarator, index_d$1_isVariance as isVariance, index_d$1_isVoidTypeAnnotation as isVoidTypeAnnotation, index_d$1_isWhile as isWhile, index_d$1_isWhileStatement as isWhileStatement, index_d$1_isWithStatement as isWithStatement, index_d$1_isYieldExpression as isYieldExpression, jsxAttribute as jSXAttribute, jsxClosingElement as jSXClosingElement, jsxClosingFragment as jSXClosingFragment, jsxElement as jSXElement, jsxEmptyExpression as jSXEmptyExpression, jsxExpressionContainer as jSXExpressionContainer, jsxFragment as jSXFragment, jsxIdentifier as jSXIdentifier, jsxMemberExpression as jSXMemberExpression, jsxNamespacedName as jSXNamespacedName, jsxOpeningElement as jSXOpeningElement, jsxOpeningFragment as jSXOpeningFragment, jsxSpreadAttribute as jSXSpreadAttribute, jsxSpreadChild as jSXSpreadChild, jsxText as jSXText, index_d$1_jsxAttribute as jsxAttribute, index_d$1_jsxClosingElement as jsxClosingElement, index_d$1_jsxClosingFragment as jsxClosingFragment, index_d$1_jsxElement as jsxElement, index_d$1_jsxEmptyExpression as jsxEmptyExpression, index_d$1_jsxExpressionContainer as jsxExpressionContainer, index_d$1_jsxFragment as jsxFragment, index_d$1_jsxIdentifier as jsxIdentifier, index_d$1_jsxMemberExpression as jsxMemberExpression, index_d$1_jsxNamespacedName as jsxNamespacedName, index_d$1_jsxOpeningElement as jsxOpeningElement, index_d$1_jsxOpeningFragment as jsxOpeningFragment, index_d$1_jsxSpreadAttribute as jsxSpreadAttribute, index_d$1_jsxSpreadChild as jsxSpreadChild, index_d$1_jsxText as jsxText, index_d$1_labeledStatement as labeledStatement, index_d$1_logicalExpression as logicalExpression, index_d$1_matchesPattern as matchesPattern, index_d$1_memberExpression as memberExpression, index_d$1_metaProperty as metaProperty, index_d$1_mixedTypeAnnotation as mixedTypeAnnotation, index_d$1_moduleExpression as moduleExpression, index_d$1_newExpression as newExpression, index_d$1_noop as noop, index_d$1_nullLiteral as nullLiteral, index_d$1_nullLiteralTypeAnnotation as nullLiteralTypeAnnotation, index_d$1_nullableTypeAnnotation as nullableTypeAnnotation, NumberLiteral as numberLiteral, index_d$1_numberLiteralTypeAnnotation as numberLiteralTypeAnnotation, index_d$1_numberTypeAnnotation as numberTypeAnnotation, index_d$1_numericLiteral as numericLiteral, index_d$1_objectExpression as objectExpression, index_d$1_objectMethod as objectMethod, index_d$1_objectPattern as objectPattern, index_d$1_objectProperty as objectProperty, index_d$1_objectTypeAnnotation as objectTypeAnnotation, index_d$1_objectTypeCallProperty as objectTypeCallProperty, index_d$1_objectTypeIndexer as objectTypeIndexer, index_d$1_objectTypeInternalSlot as objectTypeInternalSlot, index_d$1_objectTypeProperty as objectTypeProperty, index_d$1_objectTypeSpreadProperty as objectTypeSpreadProperty, index_d$1_opaqueType as opaqueType, index_d$1_optionalCallExpression as optionalCallExpression, index_d$1_optionalIndexedAccessType as optionalIndexedAccessType, index_d$1_optionalMemberExpression as optionalMemberExpression, index_d$1_parenthesizedExpression as parenthesizedExpression, index_d$1_pipelineBareFunction as pipelineBareFunction, index_d$1_pipelinePrimaryTopicReference as pipelinePrimaryTopicReference, index_d$1_pipelineTopicExpression as pipelineTopicExpression, index_d$1_placeholder as placeholder, index_d$1_prependToMemberExpression as prependToMemberExpression, index_d$1_privateName as privateName, program$1 as program, index_d$1_qualifiedTypeIdentifier as qualifiedTypeIdentifier, index_d$1_react as react, index_d$1_recordExpression as recordExpression, index_d$1_regExpLiteral as regExpLiteral, RegexLiteral as regexLiteral, index_d$1_removeComments as removeComments, index_d$1_removeProperties as removeProperties, index_d$1_removePropertiesDeep as removePropertiesDeep, index_d$1_removeTypeDuplicates as removeTypeDuplicates, index_d$1_restElement as restElement, RestProperty as restProperty, index_d$1_returnStatement as returnStatement, index_d$1_sequenceExpression as sequenceExpression, index_d$1_shallowEqual as shallowEqual, index_d$1_spreadElement as spreadElement, SpreadProperty as spreadProperty, index_d$1_staticBlock as staticBlock, index_d$1_stringLiteral as stringLiteral, index_d$1_stringLiteralTypeAnnotation as stringLiteralTypeAnnotation, index_d$1_stringTypeAnnotation as stringTypeAnnotation, _super as super, index_d$1_switchCase as switchCase, index_d$1_switchStatement as switchStatement, index_d$1_symbolTypeAnnotation as symbolTypeAnnotation, tsAnyKeyword as tSAnyKeyword, tsArrayType as tSArrayType, tsAsExpression as tSAsExpression, tsBigIntKeyword as tSBigIntKeyword, tsBooleanKeyword as tSBooleanKeyword, tsCallSignatureDeclaration as tSCallSignatureDeclaration, tsConditionalType as tSConditionalType, tsConstructSignatureDeclaration as tSConstructSignatureDeclaration, tsConstructorType as tSConstructorType, tsDeclareFunction as tSDeclareFunction, tsDeclareMethod as tSDeclareMethod, tsEnumBody as tSEnumBody, tsEnumDeclaration as tSEnumDeclaration, tsEnumMember as tSEnumMember, tsExportAssignment as tSExportAssignment, tsExpressionWithTypeArguments as tSExpressionWithTypeArguments, tsExternalModuleReference as tSExternalModuleReference, tsFunctionType as tSFunctionType, tsImportEqualsDeclaration as tSImportEqualsDeclaration, tsImportType as tSImportType, tsIndexSignature as tSIndexSignature, tsIndexedAccessType as tSIndexedAccessType, tsInferType as tSInferType, tsInstantiationExpression as tSInstantiationExpression, tsInterfaceBody as tSInterfaceBody, tsInterfaceDeclaration as tSInterfaceDeclaration, tsIntersectionType as tSIntersectionType, tsIntrinsicKeyword as tSIntrinsicKeyword, tsLiteralType as tSLiteralType, tsMappedType as tSMappedType, tsMethodSignature as tSMethodSignature, tsModuleBlock as tSModuleBlock, tsModuleDeclaration as tSModuleDeclaration, tsNamedTupleMember as tSNamedTupleMember, tsNamespaceExportDeclaration as tSNamespaceExportDeclaration, tsNeverKeyword as tSNeverKeyword, tsNonNullExpression as tSNonNullExpression, tsNullKeyword as tSNullKeyword, tsNumberKeyword as tSNumberKeyword, tsObjectKeyword as tSObjectKeyword, tsOptionalType as tSOptionalType, tsParameterProperty as tSParameterProperty, tsParenthesizedType as tSParenthesizedType, tsPropertySignature as tSPropertySignature, tsQualifiedName as tSQualifiedName, tsRestType as tSRestType, tsSatisfiesExpression as tSSatisfiesExpression, tsStringKeyword as tSStringKeyword, tsSymbolKeyword as tSSymbolKeyword, tsTemplateLiteralType as tSTemplateLiteralType, tsThisType as tSThisType, tsTupleType as tSTupleType, tsTypeAliasDeclaration as tSTypeAliasDeclaration, tsTypeAnnotation as tSTypeAnnotation, tsTypeAssertion as tSTypeAssertion, tsTypeLiteral as tSTypeLiteral, tsTypeOperator as tSTypeOperator, tsTypeParameter as tSTypeParameter, tsTypeParameterDeclaration as tSTypeParameterDeclaration, tsTypeParameterInstantiation as tSTypeParameterInstantiation, tsTypePredicate as tSTypePredicate, tsTypeQuery as tSTypeQuery, tsTypeReference as tSTypeReference, tsUndefinedKeyword as tSUndefinedKeyword, tsUnionType as tSUnionType, tsUnknownKeyword as tSUnknownKeyword, tsVoidKeyword as tSVoidKeyword, index_d$1_taggedTemplateExpression as taggedTemplateExpression, index_d$1_templateElement as templateElement, index_d$1_templateLiteral as templateLiteral, index_d$1_thisExpression as thisExpression, index_d$1_thisTypeAnnotation as thisTypeAnnotation, index_d$1_throwStatement as throwStatement, index_d$1_toBindingIdentifierName as toBindingIdentifierName, index_d$1_toBlock as toBlock, index_d$1_toComputedKey as toComputedKey, _default$3 as toExpression, index_d$1_toIdentifier as toIdentifier, index_d$1_toKeyAlias as toKeyAlias, _default$2 as toStatement, index_d$1_topicReference as topicReference, traverse$2 as traverse, index_d$1_traverseFast as traverseFast, index_d$1_tryStatement as tryStatement, index_d$1_tsAnyKeyword as tsAnyKeyword, index_d$1_tsArrayType as tsArrayType, index_d$1_tsAsExpression as tsAsExpression, index_d$1_tsBigIntKeyword as tsBigIntKeyword, index_d$1_tsBooleanKeyword as tsBooleanKeyword, index_d$1_tsCallSignatureDeclaration as tsCallSignatureDeclaration, index_d$1_tsConditionalType as tsConditionalType, index_d$1_tsConstructSignatureDeclaration as tsConstructSignatureDeclaration, index_d$1_tsConstructorType as tsConstructorType, index_d$1_tsDeclareFunction as tsDeclareFunction, index_d$1_tsDeclareMethod as tsDeclareMethod, index_d$1_tsEnumBody as tsEnumBody, index_d$1_tsEnumDeclaration as tsEnumDeclaration, index_d$1_tsEnumMember as tsEnumMember, index_d$1_tsExportAssignment as tsExportAssignment, index_d$1_tsExpressionWithTypeArguments as tsExpressionWithTypeArguments, index_d$1_tsExternalModuleReference as tsExternalModuleReference, index_d$1_tsFunctionType as tsFunctionType, index_d$1_tsImportEqualsDeclaration as tsImportEqualsDeclaration, index_d$1_tsImportType as tsImportType, index_d$1_tsIndexSignature as tsIndexSignature, index_d$1_tsIndexedAccessType as tsIndexedAccessType, index_d$1_tsInferType as tsInferType, index_d$1_tsInstantiationExpression as tsInstantiationExpression, index_d$1_tsInterfaceBody as tsInterfaceBody, index_d$1_tsInterfaceDeclaration as tsInterfaceDeclaration, index_d$1_tsIntersectionType as tsIntersectionType, index_d$1_tsIntrinsicKeyword as tsIntrinsicKeyword, index_d$1_tsLiteralType as tsLiteralType, index_d$1_tsMappedType as tsMappedType, index_d$1_tsMethodSignature as tsMethodSignature, index_d$1_tsModuleBlock as tsModuleBlock, index_d$1_tsModuleDeclaration as tsModuleDeclaration, index_d$1_tsNamedTupleMember as tsNamedTupleMember, index_d$1_tsNamespaceExportDeclaration as tsNamespaceExportDeclaration, index_d$1_tsNeverKeyword as tsNeverKeyword, index_d$1_tsNonNullExpression as tsNonNullExpression, index_d$1_tsNullKeyword as tsNullKeyword, index_d$1_tsNumberKeyword as tsNumberKeyword, index_d$1_tsObjectKeyword as tsObjectKeyword, index_d$1_tsOptionalType as tsOptionalType, index_d$1_tsParameterProperty as tsParameterProperty, index_d$1_tsParenthesizedType as tsParenthesizedType, index_d$1_tsPropertySignature as tsPropertySignature, index_d$1_tsQualifiedName as tsQualifiedName, index_d$1_tsRestType as tsRestType, index_d$1_tsSatisfiesExpression as tsSatisfiesExpression, index_d$1_tsStringKeyword as tsStringKeyword, index_d$1_tsSymbolKeyword as tsSymbolKeyword, index_d$1_tsTemplateLiteralType as tsTemplateLiteralType, index_d$1_tsThisType as tsThisType, index_d$1_tsTupleType as tsTupleType, index_d$1_tsTypeAliasDeclaration as tsTypeAliasDeclaration, index_d$1_tsTypeAnnotation as tsTypeAnnotation, index_d$1_tsTypeAssertion as tsTypeAssertion, index_d$1_tsTypeLiteral as tsTypeLiteral, index_d$1_tsTypeOperator as tsTypeOperator, index_d$1_tsTypeParameter as tsTypeParameter, index_d$1_tsTypeParameterDeclaration as tsTypeParameterDeclaration, index_d$1_tsTypeParameterInstantiation as tsTypeParameterInstantiation, index_d$1_tsTypePredicate as tsTypePredicate, index_d$1_tsTypeQuery as tsTypeQuery, index_d$1_tsTypeReference as tsTypeReference, index_d$1_tsUndefinedKeyword as tsUndefinedKeyword, index_d$1_tsUnionType as tsUnionType, index_d$1_tsUnknownKeyword as tsUnknownKeyword, index_d$1_tsVoidKeyword as tsVoidKeyword, index_d$1_tupleExpression as tupleExpression, index_d$1_tupleTypeAnnotation as tupleTypeAnnotation, index_d$1_typeAlias as typeAlias, index_d$1_typeAnnotation as typeAnnotation, index_d$1_typeCastExpression as typeCastExpression, index_d$1_typeParameter as typeParameter, index_d$1_typeParameterDeclaration as typeParameterDeclaration, index_d$1_typeParameterInstantiation as typeParameterInstantiation, index_d$1_typeofTypeAnnotation as typeofTypeAnnotation, index_d$1_unaryExpression as unaryExpression, index_d$1_unionTypeAnnotation as unionTypeAnnotation, index_d$1_updateExpression as updateExpression, index_d$1_v8IntrinsicIdentifier as v8IntrinsicIdentifier, index_d$1_validate as validate, _default$1 as valueToNode, index_d$1_variableDeclaration as variableDeclaration, index_d$1_variableDeclarator as variableDeclarator, index_d$1_variance as variance, index_d$1_voidTypeAnnotation as voidTypeAnnotation, index_d$1_whileStatement as whileStatement, index_d$1_withStatement as withStatement, index_d$1_yieldExpression as yieldExpression };
4606
+ export { index_d$1_ACCESSOR_TYPES as ACCESSOR_TYPES, index_d$1_ALIAS_KEYS as ALIAS_KEYS, index_d$1_ASSIGNMENT_OPERATORS as ASSIGNMENT_OPERATORS, type index_d$1_Accessor as Accessor, type index_d$1_Aliases as Aliases, type index_d$1_AnyTypeAnnotation as AnyTypeAnnotation, type index_d$1_ArgumentPlaceholder as ArgumentPlaceholder, type index_d$1_ArrayExpression as ArrayExpression, type index_d$1_ArrayPattern as ArrayPattern, type index_d$1_ArrayTypeAnnotation as ArrayTypeAnnotation, type index_d$1_ArrowFunctionExpression as ArrowFunctionExpression, type index_d$1_AssignmentExpression as AssignmentExpression, type index_d$1_AssignmentPattern as AssignmentPattern, type index_d$1_AwaitExpression as AwaitExpression, index_d$1_BINARY_OPERATORS as BINARY_OPERATORS, index_d$1_BINARY_TYPES as BINARY_TYPES, index_d$1_BLOCKPARENT_TYPES as BLOCKPARENT_TYPES, index_d$1_BLOCK_TYPES as BLOCK_TYPES, index_d$1_BOOLEAN_BINARY_OPERATORS as BOOLEAN_BINARY_OPERATORS, index_d$1_BOOLEAN_NUMBER_BINARY_OPERATORS as BOOLEAN_NUMBER_BINARY_OPERATORS, index_d$1_BOOLEAN_UNARY_OPERATORS as BOOLEAN_UNARY_OPERATORS, index_d$1_BUILDER_KEYS as BUILDER_KEYS, type index_d$1_BigIntLiteral as BigIntLiteral, type index_d$1_Binary as Binary, type index_d$1_BinaryExpression as BinaryExpression, type index_d$1_BindExpression as BindExpression, type index_d$1_Block as Block, type index_d$1_BlockParent as BlockParent, type index_d$1_BlockStatement as BlockStatement, type index_d$1_BooleanLiteral as BooleanLiteral, type index_d$1_BooleanLiteralTypeAnnotation as BooleanLiteralTypeAnnotation, type index_d$1_BooleanTypeAnnotation as BooleanTypeAnnotation, type index_d$1_BreakStatement as BreakStatement, index_d$1_CLASS_TYPES as CLASS_TYPES, index_d$1_COMMENT_KEYS as COMMENT_KEYS, index_d$1_COMPARISON_BINARY_OPERATORS as COMPARISON_BINARY_OPERATORS, index_d$1_COMPLETIONSTATEMENT_TYPES as COMPLETIONSTATEMENT_TYPES, index_d$1_CONDITIONAL_TYPES as CONDITIONAL_TYPES, type index_d$1_CallExpression as CallExpression, type index_d$1_CatchClause as CatchClause, type index_d$1_Class as Class, type index_d$1_ClassAccessorProperty as ClassAccessorProperty, type index_d$1_ClassBody as ClassBody, type index_d$1_ClassDeclaration as ClassDeclaration, type index_d$1_ClassExpression as ClassExpression, type index_d$1_ClassImplements as ClassImplements, type index_d$1_ClassMethod as ClassMethod, type index_d$1_ClassPrivateMethod as ClassPrivateMethod, type index_d$1_ClassPrivateProperty as ClassPrivateProperty, type index_d$1_ClassProperty as ClassProperty, type index_d$1_Comment as Comment, type index_d$1_CommentBlock as CommentBlock, type index_d$1_CommentLine as CommentLine, type index_d$1_CommentTypeShorthand as CommentTypeShorthand, type index_d$1_CompletionStatement as CompletionStatement, type index_d$1_Conditional as Conditional, type index_d$1_ConditionalExpression as ConditionalExpression, type index_d$1_ContinueStatement as ContinueStatement, index_d$1_DECLARATION_TYPES as DECLARATION_TYPES, index_d$1_DEPRECATED_ALIASES as DEPRECATED_ALIASES, index_d$1_DEPRECATED_KEYS as DEPRECATED_KEYS, type index_d$1_DebuggerStatement as DebuggerStatement, type index_d$1_DecimalLiteral as DecimalLiteral, type index_d$1_Declaration as Declaration, type index_d$1_DeclareClass as DeclareClass, type index_d$1_DeclareExportAllDeclaration as DeclareExportAllDeclaration, type index_d$1_DeclareExportDeclaration as DeclareExportDeclaration, type index_d$1_DeclareFunction as DeclareFunction, type index_d$1_DeclareInterface as DeclareInterface, type index_d$1_DeclareModule as DeclareModule, type index_d$1_DeclareModuleExports as DeclareModuleExports, type index_d$1_DeclareOpaqueType as DeclareOpaqueType, type index_d$1_DeclareTypeAlias as DeclareTypeAlias, type index_d$1_DeclareVariable as DeclareVariable, type index_d$1_DeclaredPredicate as DeclaredPredicate, type index_d$1_Decorator as Decorator, type index_d$1_DeprecatedAliases as DeprecatedAliases, type index_d$1_Directive as Directive, type index_d$1_DirectiveLiteral as DirectiveLiteral, type index_d$1_DoExpression as DoExpression, type index_d$1_DoWhileStatement as DoWhileStatement, index_d$1_ENUMBODY_TYPES as ENUMBODY_TYPES, index_d$1_ENUMMEMBER_TYPES as ENUMMEMBER_TYPES, index_d$1_EQUALITY_BINARY_OPERATORS as EQUALITY_BINARY_OPERATORS, index_d$1_EXPORTDECLARATION_TYPES as EXPORTDECLARATION_TYPES, index_d$1_EXPRESSIONWRAPPER_TYPES as EXPRESSIONWRAPPER_TYPES, index_d$1_EXPRESSION_TYPES as EXPRESSION_TYPES, type index_d$1_EmptyStatement as EmptyStatement, type index_d$1_EmptyTypeAnnotation as EmptyTypeAnnotation, type index_d$1_EnumBody as EnumBody, type index_d$1_EnumBooleanBody as EnumBooleanBody, type index_d$1_EnumBooleanMember as EnumBooleanMember, type index_d$1_EnumDeclaration as EnumDeclaration, type index_d$1_EnumDefaultedMember as EnumDefaultedMember, type index_d$1_EnumMember as EnumMember, type index_d$1_EnumNumberBody as EnumNumberBody, type index_d$1_EnumNumberMember as EnumNumberMember, type index_d$1_EnumStringBody as EnumStringBody, type index_d$1_EnumStringMember as EnumStringMember, type index_d$1_EnumSymbolBody as EnumSymbolBody, type index_d$1_ExistsTypeAnnotation as ExistsTypeAnnotation, type index_d$1_ExportAllDeclaration as ExportAllDeclaration, type index_d$1_ExportDeclaration as ExportDeclaration, type index_d$1_ExportDefaultDeclaration as ExportDefaultDeclaration, type index_d$1_ExportDefaultSpecifier as ExportDefaultSpecifier, type index_d$1_ExportNamedDeclaration as ExportNamedDeclaration, type index_d$1_ExportNamespaceSpecifier as ExportNamespaceSpecifier, type index_d$1_ExportSpecifier as ExportSpecifier, type index_d$1_Expression as Expression, type index_d$1_ExpressionStatement as ExpressionStatement, type index_d$1_ExpressionWrapper as ExpressionWrapper, index_d$1_FLATTENABLE_KEYS as FLATTENABLE_KEYS, index_d$1_FLIPPED_ALIAS_KEYS as FLIPPED_ALIAS_KEYS, index_d$1_FLOWBASEANNOTATION_TYPES as FLOWBASEANNOTATION_TYPES, index_d$1_FLOWDECLARATION_TYPES as FLOWDECLARATION_TYPES, index_d$1_FLOWPREDICATE_TYPES as FLOWPREDICATE_TYPES, index_d$1_FLOWTYPE_TYPES as FLOWTYPE_TYPES, index_d$1_FLOW_TYPES as FLOW_TYPES, index_d$1_FORXSTATEMENT_TYPES as FORXSTATEMENT_TYPES, index_d$1_FOR_INIT_KEYS as FOR_INIT_KEYS, index_d$1_FOR_TYPES as FOR_TYPES, index_d$1_FUNCTIONPARENT_TYPES as FUNCTIONPARENT_TYPES, index_d$1_FUNCTION_TYPES as FUNCTION_TYPES, type index_d$1_FieldOptions as FieldOptions, type index_d$1_File as File, type index_d$1_Flow as Flow, type index_d$1_FlowBaseAnnotation as FlowBaseAnnotation, type index_d$1_FlowDeclaration as FlowDeclaration, type index_d$1_FlowPredicate as FlowPredicate, type index_d$1_FlowType as FlowType, type index_d$1_For as For, type index_d$1_ForInStatement as ForInStatement, type index_d$1_ForOfStatement as ForOfStatement, type index_d$1_ForStatement as ForStatement, type index_d$1_ForXStatement as ForXStatement, type index_d$1_Function as Function, type index_d$1_FunctionDeclaration as FunctionDeclaration, type index_d$1_FunctionExpression as FunctionExpression, type index_d$1_FunctionParent as FunctionParent, type index_d$1_FunctionTypeAnnotation as FunctionTypeAnnotation, type index_d$1_FunctionTypeParam as FunctionTypeParam, type index_d$1_GenericTypeAnnotation as GenericTypeAnnotation, index_d$1_IMMUTABLE_TYPES as IMMUTABLE_TYPES, index_d$1_IMPORTOREXPORTDECLARATION_TYPES as IMPORTOREXPORTDECLARATION_TYPES, index_d$1_INHERIT_KEYS as INHERIT_KEYS, type index_d$1_Identifier as Identifier, type index_d$1_IfStatement as IfStatement, type index_d$1_Immutable as Immutable, type index_d$1_Import as Import, type index_d$1_ImportAttribute as ImportAttribute, type index_d$1_ImportDeclaration as ImportDeclaration, type index_d$1_ImportDefaultSpecifier as ImportDefaultSpecifier, type index_d$1_ImportExpression as ImportExpression, type index_d$1_ImportNamespaceSpecifier as ImportNamespaceSpecifier, type index_d$1_ImportOrExportDeclaration as ImportOrExportDeclaration, type index_d$1_ImportSpecifier as ImportSpecifier, type index_d$1_IndexedAccessType as IndexedAccessType, type index_d$1_InferredPredicate as InferredPredicate, type index_d$1_InterfaceDeclaration as InterfaceDeclaration, type index_d$1_InterfaceExtends as InterfaceExtends, type index_d$1_InterfaceTypeAnnotation as InterfaceTypeAnnotation, type index_d$1_InterpreterDirective as InterpreterDirective, type index_d$1_IntersectionTypeAnnotation as IntersectionTypeAnnotation, type index_d$1_JSX as JSX, type index_d$1_JSXAttribute as JSXAttribute, type index_d$1_JSXClosingElement as JSXClosingElement, type index_d$1_JSXClosingFragment as JSXClosingFragment, type index_d$1_JSXElement as JSXElement, type index_d$1_JSXEmptyExpression as JSXEmptyExpression, type index_d$1_JSXExpressionContainer as JSXExpressionContainer, type index_d$1_JSXFragment as JSXFragment, type index_d$1_JSXIdentifier as JSXIdentifier, type index_d$1_JSXMemberExpression as JSXMemberExpression, type index_d$1_JSXNamespacedName as JSXNamespacedName, type index_d$1_JSXOpeningElement as JSXOpeningElement, type index_d$1_JSXOpeningFragment as JSXOpeningFragment, type index_d$1_JSXSpreadAttribute as JSXSpreadAttribute, type index_d$1_JSXSpreadChild as JSXSpreadChild, type index_d$1_JSXText as JSXText, index_d$1_JSX_TYPES as JSX_TYPES, index_d$1_LITERAL_TYPES as LITERAL_TYPES, index_d$1_LOGICAL_OPERATORS as LOGICAL_OPERATORS, index_d$1_LOOP_TYPES as LOOP_TYPES, index_d$1_LVAL_TYPES as LVAL_TYPES, type index_d$1_LVal as LVal, type index_d$1_LabeledStatement as LabeledStatement, type index_d$1_Literal as Literal, type index_d$1_LogicalExpression as LogicalExpression, type index_d$1_Loop as Loop, index_d$1_METHOD_TYPES as METHOD_TYPES, index_d$1_MISCELLANEOUS_TYPES as MISCELLANEOUS_TYPES, index_d$1_MODULEDECLARATION_TYPES as MODULEDECLARATION_TYPES, index_d$1_MODULESPECIFIER_TYPES as MODULESPECIFIER_TYPES, type index_d$1_MemberExpression as MemberExpression, type index_d$1_MetaProperty as MetaProperty, type index_d$1_Method as Method, type index_d$1_Miscellaneous as Miscellaneous, type index_d$1_MixedTypeAnnotation as MixedTypeAnnotation, type index_d$1_ModuleDeclaration as ModuleDeclaration, type index_d$1_ModuleExpression as ModuleExpression, type index_d$1_ModuleSpecifier as ModuleSpecifier, index_d$1_NODE_FIELDS as NODE_FIELDS, index_d$1_NODE_PARENT_VALIDATIONS as NODE_PARENT_VALIDATIONS, index_d$1_NUMBER_BINARY_OPERATORS as NUMBER_BINARY_OPERATORS, index_d$1_NUMBER_UNARY_OPERATORS as NUMBER_UNARY_OPERATORS, type index_d$1_NewExpression as NewExpression, type Node$1 as Node, type index_d$1_Noop as Noop, type index_d$1_NullLiteral as NullLiteral, type index_d$1_NullLiteralTypeAnnotation as NullLiteralTypeAnnotation, type index_d$1_NullableTypeAnnotation as NullableTypeAnnotation, type NumberLiteral$1 as NumberLiteral, type index_d$1_NumberLiteralTypeAnnotation as NumberLiteralTypeAnnotation, type index_d$1_NumberTypeAnnotation as NumberTypeAnnotation, type index_d$1_NumericLiteral as NumericLiteral, index_d$1_OBJECTMEMBER_TYPES as OBJECTMEMBER_TYPES, type index_d$1_ObjectExpression as ObjectExpression, type index_d$1_ObjectMember as ObjectMember, type index_d$1_ObjectMethod as ObjectMethod, type index_d$1_ObjectPattern as ObjectPattern, type index_d$1_ObjectProperty as ObjectProperty, type index_d$1_ObjectTypeAnnotation as ObjectTypeAnnotation, type index_d$1_ObjectTypeCallProperty as ObjectTypeCallProperty, type index_d$1_ObjectTypeIndexer as ObjectTypeIndexer, type index_d$1_ObjectTypeInternalSlot as ObjectTypeInternalSlot, type index_d$1_ObjectTypeProperty as ObjectTypeProperty, type index_d$1_ObjectTypeSpreadProperty as ObjectTypeSpreadProperty, type index_d$1_OpaqueType as OpaqueType, type index_d$1_OptionalCallExpression as OptionalCallExpression, type index_d$1_OptionalIndexedAccessType as OptionalIndexedAccessType, type index_d$1_OptionalMemberExpression as OptionalMemberExpression, index_d$1_PATTERNLIKE_TYPES as PATTERNLIKE_TYPES, index_d$1_PATTERN_TYPES as PATTERN_TYPES, index_d$1_PLACEHOLDERS as PLACEHOLDERS, index_d$1_PLACEHOLDERS_ALIAS as PLACEHOLDERS_ALIAS, index_d$1_PLACEHOLDERS_FLIPPED_ALIAS as PLACEHOLDERS_FLIPPED_ALIAS, index_d$1_PRIVATE_TYPES as PRIVATE_TYPES, index_d$1_PROPERTY_TYPES as PROPERTY_TYPES, index_d$1_PUREISH_TYPES as PUREISH_TYPES, type index_d$1_ParentMaps as ParentMaps, type index_d$1_ParenthesizedExpression as ParenthesizedExpression, type index_d$1_Pattern as Pattern, type index_d$1_PatternLike as PatternLike, type index_d$1_PipelineBareFunction as PipelineBareFunction, type index_d$1_PipelinePrimaryTopicReference as PipelinePrimaryTopicReference, type index_d$1_PipelineTopicExpression as PipelineTopicExpression, type index_d$1_Placeholder as Placeholder, type index_d$1_Private as Private, type index_d$1_PrivateName as PrivateName, type index_d$1_Program as Program, type index_d$1_Property as Property, type index_d$1_Pureish as Pureish, type index_d$1_QualifiedTypeIdentifier as QualifiedTypeIdentifier, type index_d$1_RecordExpression as RecordExpression, type index_d$1_RegExpLiteral as RegExpLiteral, type RegexLiteral$1 as RegexLiteral, type Options$1 as RemovePropertiesOptions, type index_d$1_RestElement as RestElement, type RestProperty$1 as RestProperty, type index_d$1_ReturnStatement as ReturnStatement, index_d$1_SCOPABLE_TYPES as SCOPABLE_TYPES, index_d$1_STANDARDIZED_TYPES as STANDARDIZED_TYPES, index_d$1_STATEMENT_OR_BLOCK_KEYS as STATEMENT_OR_BLOCK_KEYS, index_d$1_STATEMENT_TYPES as STATEMENT_TYPES, index_d$1_STRING_UNARY_OPERATORS as STRING_UNARY_OPERATORS, type index_d$1_Scopable as Scopable, type index_d$1_SequenceExpression as SequenceExpression, type index_d$1_SourceLocation as SourceLocation, type index_d$1_SpreadElement as SpreadElement, type SpreadProperty$1 as SpreadProperty, type index_d$1_Standardized as Standardized, type index_d$1_Statement as Statement, type index_d$1_StaticBlock as StaticBlock, type index_d$1_StringLiteral as StringLiteral, type index_d$1_StringLiteralTypeAnnotation as StringLiteralTypeAnnotation, type index_d$1_StringTypeAnnotation as StringTypeAnnotation, type index_d$1_Super as Super, type index_d$1_SwitchCase as SwitchCase, type index_d$1_SwitchStatement as SwitchStatement, type index_d$1_SymbolTypeAnnotation as SymbolTypeAnnotation, index_d$1_TERMINATORLESS_TYPES as TERMINATORLESS_TYPES, type index_d$1_TSAnyKeyword as TSAnyKeyword, type index_d$1_TSArrayType as TSArrayType, type index_d$1_TSAsExpression as TSAsExpression, index_d$1_TSBASETYPE_TYPES as TSBASETYPE_TYPES, type index_d$1_TSBaseType as TSBaseType, type index_d$1_TSBigIntKeyword as TSBigIntKeyword, type index_d$1_TSBooleanKeyword as TSBooleanKeyword, type index_d$1_TSCallSignatureDeclaration as TSCallSignatureDeclaration, type index_d$1_TSConditionalType as TSConditionalType, type index_d$1_TSConstructSignatureDeclaration as TSConstructSignatureDeclaration, type index_d$1_TSConstructorType as TSConstructorType, type index_d$1_TSDeclareFunction as TSDeclareFunction, type index_d$1_TSDeclareMethod as TSDeclareMethod, index_d$1_TSENTITYNAME_TYPES as TSENTITYNAME_TYPES, type index_d$1_TSEntityName as TSEntityName, type index_d$1_TSEnumBody as TSEnumBody, type index_d$1_TSEnumDeclaration as TSEnumDeclaration, type index_d$1_TSEnumMember as TSEnumMember, type index_d$1_TSExportAssignment as TSExportAssignment, type index_d$1_TSExpressionWithTypeArguments as TSExpressionWithTypeArguments, type index_d$1_TSExternalModuleReference as TSExternalModuleReference, type index_d$1_TSFunctionType as TSFunctionType, type index_d$1_TSImportEqualsDeclaration as TSImportEqualsDeclaration, type index_d$1_TSImportType as TSImportType, type index_d$1_TSIndexSignature as TSIndexSignature, type index_d$1_TSIndexedAccessType as TSIndexedAccessType, type index_d$1_TSInferType as TSInferType, type index_d$1_TSInstantiationExpression as TSInstantiationExpression, type index_d$1_TSInterfaceBody as TSInterfaceBody, type index_d$1_TSInterfaceDeclaration as TSInterfaceDeclaration, type index_d$1_TSIntersectionType as TSIntersectionType, type index_d$1_TSIntrinsicKeyword as TSIntrinsicKeyword, type index_d$1_TSLiteralType as TSLiteralType, type index_d$1_TSMappedType as TSMappedType, type index_d$1_TSMethodSignature as TSMethodSignature, type index_d$1_TSModuleBlock as TSModuleBlock, type index_d$1_TSModuleDeclaration as TSModuleDeclaration, type index_d$1_TSNamedTupleMember as TSNamedTupleMember, type index_d$1_TSNamespaceExportDeclaration as TSNamespaceExportDeclaration, type index_d$1_TSNeverKeyword as TSNeverKeyword, type index_d$1_TSNonNullExpression as TSNonNullExpression, type index_d$1_TSNullKeyword as TSNullKeyword, type index_d$1_TSNumberKeyword as TSNumberKeyword, type index_d$1_TSObjectKeyword as TSObjectKeyword, type index_d$1_TSOptionalType as TSOptionalType, type index_d$1_TSParameterProperty as TSParameterProperty, type index_d$1_TSParenthesizedType as TSParenthesizedType, type index_d$1_TSPropertySignature as TSPropertySignature, type index_d$1_TSQualifiedName as TSQualifiedName, type index_d$1_TSRestType as TSRestType, type index_d$1_TSSatisfiesExpression as TSSatisfiesExpression, type index_d$1_TSStringKeyword as TSStringKeyword, type index_d$1_TSSymbolKeyword as TSSymbolKeyword, index_d$1_TSTYPEELEMENT_TYPES as TSTYPEELEMENT_TYPES, index_d$1_TSTYPE_TYPES as TSTYPE_TYPES, type index_d$1_TSTemplateLiteralType as TSTemplateLiteralType, type index_d$1_TSThisType as TSThisType, type index_d$1_TSTupleType as TSTupleType, type index_d$1_TSType as TSType, type index_d$1_TSTypeAliasDeclaration as TSTypeAliasDeclaration, type index_d$1_TSTypeAnnotation as TSTypeAnnotation, type index_d$1_TSTypeAssertion as TSTypeAssertion, type index_d$1_TSTypeElement as TSTypeElement, type index_d$1_TSTypeLiteral as TSTypeLiteral, type index_d$1_TSTypeOperator as TSTypeOperator, type index_d$1_TSTypeParameter as TSTypeParameter, type index_d$1_TSTypeParameterDeclaration as TSTypeParameterDeclaration, type index_d$1_TSTypeParameterInstantiation as TSTypeParameterInstantiation, type index_d$1_TSTypePredicate as TSTypePredicate, type index_d$1_TSTypeQuery as TSTypeQuery, type index_d$1_TSTypeReference as TSTypeReference, type index_d$1_TSUndefinedKeyword as TSUndefinedKeyword, type index_d$1_TSUnionType as TSUnionType, type index_d$1_TSUnknownKeyword as TSUnknownKeyword, type index_d$1_TSVoidKeyword as TSVoidKeyword, index_d$1_TYPES as TYPES, index_d$1_TYPESCRIPT_TYPES as TYPESCRIPT_TYPES, type index_d$1_TaggedTemplateExpression as TaggedTemplateExpression, type index_d$1_TemplateElement as TemplateElement, type index_d$1_TemplateLiteral as TemplateLiteral, type index_d$1_Terminatorless as Terminatorless, type index_d$1_ThisExpression as ThisExpression, type index_d$1_ThisTypeAnnotation as ThisTypeAnnotation, type index_d$1_ThrowStatement as ThrowStatement, type index_d$1_TopicReference as TopicReference, type index_d$1_TraversalAncestors as TraversalAncestors, type index_d$1_TraversalHandler as TraversalHandler, type index_d$1_TraversalHandlers as TraversalHandlers, type index_d$1_TryStatement as TryStatement, type index_d$1_TupleExpression as TupleExpression, type index_d$1_TupleTypeAnnotation as TupleTypeAnnotation, type index_d$1_TypeAlias as TypeAlias, type index_d$1_TypeAnnotation as TypeAnnotation, type index_d$1_TypeCastExpression as TypeCastExpression, type index_d$1_TypeParameter as TypeParameter, type index_d$1_TypeParameterDeclaration as TypeParameterDeclaration, type index_d$1_TypeParameterInstantiation as TypeParameterInstantiation, type index_d$1_TypeScript as TypeScript, type index_d$1_TypeofTypeAnnotation as TypeofTypeAnnotation, index_d$1_UNARYLIKE_TYPES as UNARYLIKE_TYPES, index_d$1_UNARY_OPERATORS as UNARY_OPERATORS, index_d$1_UPDATE_OPERATORS as UPDATE_OPERATORS, index_d$1_USERWHITESPACABLE_TYPES as USERWHITESPACABLE_TYPES, type index_d$1_UnaryExpression as UnaryExpression, type index_d$1_UnaryLike as UnaryLike, type index_d$1_UnionTypeAnnotation as UnionTypeAnnotation, type index_d$1_UpdateExpression as UpdateExpression, type index_d$1_UserWhitespacable as UserWhitespacable, type index_d$1_V8IntrinsicIdentifier as V8IntrinsicIdentifier, index_d$1_VISITOR_KEYS as VISITOR_KEYS, type index_d$1_VariableDeclaration as VariableDeclaration, type index_d$1_VariableDeclarator as VariableDeclarator, type index_d$1_Variance as Variance, type index_d$1_VoidTypeAnnotation as VoidTypeAnnotation, index_d$1_WHILE_TYPES as WHILE_TYPES, type index_d$1_While as While, type index_d$1_WhileStatement as WhileStatement, type index_d$1_WithStatement as WithStatement, type index_d$1_YieldExpression as YieldExpression, deprecationWarning as __internal__deprecationWarning, index_d$1_addComment as addComment, index_d$1_addComments as addComments, index_d$1_anyTypeAnnotation as anyTypeAnnotation, index_d$1_appendToMemberExpression as appendToMemberExpression, index_d$1_argumentPlaceholder as argumentPlaceholder, index_d$1_arrayExpression as arrayExpression, index_d$1_arrayPattern as arrayPattern, index_d$1_arrayTypeAnnotation as arrayTypeAnnotation, index_d$1_arrowFunctionExpression as arrowFunctionExpression, index_d$1_assertAccessor as assertAccessor, index_d$1_assertAnyTypeAnnotation as assertAnyTypeAnnotation, index_d$1_assertArgumentPlaceholder as assertArgumentPlaceholder, index_d$1_assertArrayExpression as assertArrayExpression, index_d$1_assertArrayPattern as assertArrayPattern, index_d$1_assertArrayTypeAnnotation as assertArrayTypeAnnotation, index_d$1_assertArrowFunctionExpression as assertArrowFunctionExpression, index_d$1_assertAssignmentExpression as assertAssignmentExpression, index_d$1_assertAssignmentPattern as assertAssignmentPattern, index_d$1_assertAwaitExpression as assertAwaitExpression, index_d$1_assertBigIntLiteral as assertBigIntLiteral, index_d$1_assertBinary as assertBinary, index_d$1_assertBinaryExpression as assertBinaryExpression, index_d$1_assertBindExpression as assertBindExpression, index_d$1_assertBlock as assertBlock, index_d$1_assertBlockParent as assertBlockParent, index_d$1_assertBlockStatement as assertBlockStatement, index_d$1_assertBooleanLiteral as assertBooleanLiteral, index_d$1_assertBooleanLiteralTypeAnnotation as assertBooleanLiteralTypeAnnotation, index_d$1_assertBooleanTypeAnnotation as assertBooleanTypeAnnotation, index_d$1_assertBreakStatement as assertBreakStatement, index_d$1_assertCallExpression as assertCallExpression, index_d$1_assertCatchClause as assertCatchClause, index_d$1_assertClass as assertClass, index_d$1_assertClassAccessorProperty as assertClassAccessorProperty, index_d$1_assertClassBody as assertClassBody, index_d$1_assertClassDeclaration as assertClassDeclaration, index_d$1_assertClassExpression as assertClassExpression, index_d$1_assertClassImplements as assertClassImplements, index_d$1_assertClassMethod as assertClassMethod, index_d$1_assertClassPrivateMethod as assertClassPrivateMethod, index_d$1_assertClassPrivateProperty as assertClassPrivateProperty, index_d$1_assertClassProperty as assertClassProperty, index_d$1_assertCompletionStatement as assertCompletionStatement, index_d$1_assertConditional as assertConditional, index_d$1_assertConditionalExpression as assertConditionalExpression, index_d$1_assertContinueStatement as assertContinueStatement, index_d$1_assertDebuggerStatement as assertDebuggerStatement, index_d$1_assertDecimalLiteral as assertDecimalLiteral, index_d$1_assertDeclaration as assertDeclaration, index_d$1_assertDeclareClass as assertDeclareClass, index_d$1_assertDeclareExportAllDeclaration as assertDeclareExportAllDeclaration, index_d$1_assertDeclareExportDeclaration as assertDeclareExportDeclaration, index_d$1_assertDeclareFunction as assertDeclareFunction, index_d$1_assertDeclareInterface as assertDeclareInterface, index_d$1_assertDeclareModule as assertDeclareModule, index_d$1_assertDeclareModuleExports as assertDeclareModuleExports, index_d$1_assertDeclareOpaqueType as assertDeclareOpaqueType, index_d$1_assertDeclareTypeAlias as assertDeclareTypeAlias, index_d$1_assertDeclareVariable as assertDeclareVariable, index_d$1_assertDeclaredPredicate as assertDeclaredPredicate, index_d$1_assertDecorator as assertDecorator, index_d$1_assertDirective as assertDirective, index_d$1_assertDirectiveLiteral as assertDirectiveLiteral, index_d$1_assertDoExpression as assertDoExpression, index_d$1_assertDoWhileStatement as assertDoWhileStatement, index_d$1_assertEmptyStatement as assertEmptyStatement, index_d$1_assertEmptyTypeAnnotation as assertEmptyTypeAnnotation, index_d$1_assertEnumBody as assertEnumBody, index_d$1_assertEnumBooleanBody as assertEnumBooleanBody, index_d$1_assertEnumBooleanMember as assertEnumBooleanMember, index_d$1_assertEnumDeclaration as assertEnumDeclaration, index_d$1_assertEnumDefaultedMember as assertEnumDefaultedMember, index_d$1_assertEnumMember as assertEnumMember, index_d$1_assertEnumNumberBody as assertEnumNumberBody, index_d$1_assertEnumNumberMember as assertEnumNumberMember, index_d$1_assertEnumStringBody as assertEnumStringBody, index_d$1_assertEnumStringMember as assertEnumStringMember, index_d$1_assertEnumSymbolBody as assertEnumSymbolBody, index_d$1_assertExistsTypeAnnotation as assertExistsTypeAnnotation, index_d$1_assertExportAllDeclaration as assertExportAllDeclaration, index_d$1_assertExportDeclaration as assertExportDeclaration, index_d$1_assertExportDefaultDeclaration as assertExportDefaultDeclaration, index_d$1_assertExportDefaultSpecifier as assertExportDefaultSpecifier, index_d$1_assertExportNamedDeclaration as assertExportNamedDeclaration, index_d$1_assertExportNamespaceSpecifier as assertExportNamespaceSpecifier, index_d$1_assertExportSpecifier as assertExportSpecifier, index_d$1_assertExpression as assertExpression, index_d$1_assertExpressionStatement as assertExpressionStatement, index_d$1_assertExpressionWrapper as assertExpressionWrapper, index_d$1_assertFile as assertFile, index_d$1_assertFlow as assertFlow, index_d$1_assertFlowBaseAnnotation as assertFlowBaseAnnotation, index_d$1_assertFlowDeclaration as assertFlowDeclaration, index_d$1_assertFlowPredicate as assertFlowPredicate, index_d$1_assertFlowType as assertFlowType, index_d$1_assertFor as assertFor, index_d$1_assertForInStatement as assertForInStatement, index_d$1_assertForOfStatement as assertForOfStatement, index_d$1_assertForStatement as assertForStatement, index_d$1_assertForXStatement as assertForXStatement, index_d$1_assertFunction as assertFunction, index_d$1_assertFunctionDeclaration as assertFunctionDeclaration, index_d$1_assertFunctionExpression as assertFunctionExpression, index_d$1_assertFunctionParent as assertFunctionParent, index_d$1_assertFunctionTypeAnnotation as assertFunctionTypeAnnotation, index_d$1_assertFunctionTypeParam as assertFunctionTypeParam, index_d$1_assertGenericTypeAnnotation as assertGenericTypeAnnotation, index_d$1_assertIdentifier as assertIdentifier, index_d$1_assertIfStatement as assertIfStatement, index_d$1_assertImmutable as assertImmutable, index_d$1_assertImport as assertImport, index_d$1_assertImportAttribute as assertImportAttribute, index_d$1_assertImportDeclaration as assertImportDeclaration, index_d$1_assertImportDefaultSpecifier as assertImportDefaultSpecifier, index_d$1_assertImportExpression as assertImportExpression, index_d$1_assertImportNamespaceSpecifier as assertImportNamespaceSpecifier, index_d$1_assertImportOrExportDeclaration as assertImportOrExportDeclaration, index_d$1_assertImportSpecifier as assertImportSpecifier, index_d$1_assertIndexedAccessType as assertIndexedAccessType, index_d$1_assertInferredPredicate as assertInferredPredicate, index_d$1_assertInterfaceDeclaration as assertInterfaceDeclaration, index_d$1_assertInterfaceExtends as assertInterfaceExtends, index_d$1_assertInterfaceTypeAnnotation as assertInterfaceTypeAnnotation, index_d$1_assertInterpreterDirective as assertInterpreterDirective, index_d$1_assertIntersectionTypeAnnotation as assertIntersectionTypeAnnotation, index_d$1_assertJSX as assertJSX, index_d$1_assertJSXAttribute as assertJSXAttribute, index_d$1_assertJSXClosingElement as assertJSXClosingElement, index_d$1_assertJSXClosingFragment as assertJSXClosingFragment, index_d$1_assertJSXElement as assertJSXElement, index_d$1_assertJSXEmptyExpression as assertJSXEmptyExpression, index_d$1_assertJSXExpressionContainer as assertJSXExpressionContainer, index_d$1_assertJSXFragment as assertJSXFragment, index_d$1_assertJSXIdentifier as assertJSXIdentifier, index_d$1_assertJSXMemberExpression as assertJSXMemberExpression, index_d$1_assertJSXNamespacedName as assertJSXNamespacedName, index_d$1_assertJSXOpeningElement as assertJSXOpeningElement, index_d$1_assertJSXOpeningFragment as assertJSXOpeningFragment, index_d$1_assertJSXSpreadAttribute as assertJSXSpreadAttribute, index_d$1_assertJSXSpreadChild as assertJSXSpreadChild, index_d$1_assertJSXText as assertJSXText, index_d$1_assertLVal as assertLVal, index_d$1_assertLabeledStatement as assertLabeledStatement, index_d$1_assertLiteral as assertLiteral, index_d$1_assertLogicalExpression as assertLogicalExpression, index_d$1_assertLoop as assertLoop, index_d$1_assertMemberExpression as assertMemberExpression, index_d$1_assertMetaProperty as assertMetaProperty, index_d$1_assertMethod as assertMethod, index_d$1_assertMiscellaneous as assertMiscellaneous, index_d$1_assertMixedTypeAnnotation as assertMixedTypeAnnotation, index_d$1_assertModuleDeclaration as assertModuleDeclaration, index_d$1_assertModuleExpression as assertModuleExpression, index_d$1_assertModuleSpecifier as assertModuleSpecifier, index_d$1_assertNewExpression as assertNewExpression, index_d$1_assertNode as assertNode, index_d$1_assertNoop as assertNoop, index_d$1_assertNullLiteral as assertNullLiteral, index_d$1_assertNullLiteralTypeAnnotation as assertNullLiteralTypeAnnotation, index_d$1_assertNullableTypeAnnotation as assertNullableTypeAnnotation, index_d$1_assertNumberLiteral as assertNumberLiteral, index_d$1_assertNumberLiteralTypeAnnotation as assertNumberLiteralTypeAnnotation, index_d$1_assertNumberTypeAnnotation as assertNumberTypeAnnotation, index_d$1_assertNumericLiteral as assertNumericLiteral, index_d$1_assertObjectExpression as assertObjectExpression, index_d$1_assertObjectMember as assertObjectMember, index_d$1_assertObjectMethod as assertObjectMethod, index_d$1_assertObjectPattern as assertObjectPattern, index_d$1_assertObjectProperty as assertObjectProperty, index_d$1_assertObjectTypeAnnotation as assertObjectTypeAnnotation, index_d$1_assertObjectTypeCallProperty as assertObjectTypeCallProperty, index_d$1_assertObjectTypeIndexer as assertObjectTypeIndexer, index_d$1_assertObjectTypeInternalSlot as assertObjectTypeInternalSlot, index_d$1_assertObjectTypeProperty as assertObjectTypeProperty, index_d$1_assertObjectTypeSpreadProperty as assertObjectTypeSpreadProperty, index_d$1_assertOpaqueType as assertOpaqueType, index_d$1_assertOptionalCallExpression as assertOptionalCallExpression, index_d$1_assertOptionalIndexedAccessType as assertOptionalIndexedAccessType, index_d$1_assertOptionalMemberExpression as assertOptionalMemberExpression, index_d$1_assertParenthesizedExpression as assertParenthesizedExpression, index_d$1_assertPattern as assertPattern, index_d$1_assertPatternLike as assertPatternLike, index_d$1_assertPipelineBareFunction as assertPipelineBareFunction, index_d$1_assertPipelinePrimaryTopicReference as assertPipelinePrimaryTopicReference, index_d$1_assertPipelineTopicExpression as assertPipelineTopicExpression, index_d$1_assertPlaceholder as assertPlaceholder, index_d$1_assertPrivate as assertPrivate, index_d$1_assertPrivateName as assertPrivateName, index_d$1_assertProgram as assertProgram, index_d$1_assertProperty as assertProperty, index_d$1_assertPureish as assertPureish, index_d$1_assertQualifiedTypeIdentifier as assertQualifiedTypeIdentifier, index_d$1_assertRecordExpression as assertRecordExpression, index_d$1_assertRegExpLiteral as assertRegExpLiteral, index_d$1_assertRegexLiteral as assertRegexLiteral, index_d$1_assertRestElement as assertRestElement, index_d$1_assertRestProperty as assertRestProperty, index_d$1_assertReturnStatement as assertReturnStatement, index_d$1_assertScopable as assertScopable, index_d$1_assertSequenceExpression as assertSequenceExpression, index_d$1_assertSpreadElement as assertSpreadElement, index_d$1_assertSpreadProperty as assertSpreadProperty, index_d$1_assertStandardized as assertStandardized, index_d$1_assertStatement as assertStatement, index_d$1_assertStaticBlock as assertStaticBlock, index_d$1_assertStringLiteral as assertStringLiteral, index_d$1_assertStringLiteralTypeAnnotation as assertStringLiteralTypeAnnotation, index_d$1_assertStringTypeAnnotation as assertStringTypeAnnotation, index_d$1_assertSuper as assertSuper, index_d$1_assertSwitchCase as assertSwitchCase, index_d$1_assertSwitchStatement as assertSwitchStatement, index_d$1_assertSymbolTypeAnnotation as assertSymbolTypeAnnotation, index_d$1_assertTSAnyKeyword as assertTSAnyKeyword, index_d$1_assertTSArrayType as assertTSArrayType, index_d$1_assertTSAsExpression as assertTSAsExpression, index_d$1_assertTSBaseType as assertTSBaseType, index_d$1_assertTSBigIntKeyword as assertTSBigIntKeyword, index_d$1_assertTSBooleanKeyword as assertTSBooleanKeyword, index_d$1_assertTSCallSignatureDeclaration as assertTSCallSignatureDeclaration, index_d$1_assertTSConditionalType as assertTSConditionalType, index_d$1_assertTSConstructSignatureDeclaration as assertTSConstructSignatureDeclaration, index_d$1_assertTSConstructorType as assertTSConstructorType, index_d$1_assertTSDeclareFunction as assertTSDeclareFunction, index_d$1_assertTSDeclareMethod as assertTSDeclareMethod, index_d$1_assertTSEntityName as assertTSEntityName, index_d$1_assertTSEnumBody as assertTSEnumBody, index_d$1_assertTSEnumDeclaration as assertTSEnumDeclaration, index_d$1_assertTSEnumMember as assertTSEnumMember, index_d$1_assertTSExportAssignment as assertTSExportAssignment, index_d$1_assertTSExpressionWithTypeArguments as assertTSExpressionWithTypeArguments, index_d$1_assertTSExternalModuleReference as assertTSExternalModuleReference, index_d$1_assertTSFunctionType as assertTSFunctionType, index_d$1_assertTSImportEqualsDeclaration as assertTSImportEqualsDeclaration, index_d$1_assertTSImportType as assertTSImportType, index_d$1_assertTSIndexSignature as assertTSIndexSignature, index_d$1_assertTSIndexedAccessType as assertTSIndexedAccessType, index_d$1_assertTSInferType as assertTSInferType, index_d$1_assertTSInstantiationExpression as assertTSInstantiationExpression, index_d$1_assertTSInterfaceBody as assertTSInterfaceBody, index_d$1_assertTSInterfaceDeclaration as assertTSInterfaceDeclaration, index_d$1_assertTSIntersectionType as assertTSIntersectionType, index_d$1_assertTSIntrinsicKeyword as assertTSIntrinsicKeyword, index_d$1_assertTSLiteralType as assertTSLiteralType, index_d$1_assertTSMappedType as assertTSMappedType, index_d$1_assertTSMethodSignature as assertTSMethodSignature, index_d$1_assertTSModuleBlock as assertTSModuleBlock, index_d$1_assertTSModuleDeclaration as assertTSModuleDeclaration, index_d$1_assertTSNamedTupleMember as assertTSNamedTupleMember, index_d$1_assertTSNamespaceExportDeclaration as assertTSNamespaceExportDeclaration, index_d$1_assertTSNeverKeyword as assertTSNeverKeyword, index_d$1_assertTSNonNullExpression as assertTSNonNullExpression, index_d$1_assertTSNullKeyword as assertTSNullKeyword, index_d$1_assertTSNumberKeyword as assertTSNumberKeyword, index_d$1_assertTSObjectKeyword as assertTSObjectKeyword, index_d$1_assertTSOptionalType as assertTSOptionalType, index_d$1_assertTSParameterProperty as assertTSParameterProperty, index_d$1_assertTSParenthesizedType as assertTSParenthesizedType, index_d$1_assertTSPropertySignature as assertTSPropertySignature, index_d$1_assertTSQualifiedName as assertTSQualifiedName, index_d$1_assertTSRestType as assertTSRestType, index_d$1_assertTSSatisfiesExpression as assertTSSatisfiesExpression, index_d$1_assertTSStringKeyword as assertTSStringKeyword, index_d$1_assertTSSymbolKeyword as assertTSSymbolKeyword, index_d$1_assertTSTemplateLiteralType as assertTSTemplateLiteralType, index_d$1_assertTSThisType as assertTSThisType, index_d$1_assertTSTupleType as assertTSTupleType, index_d$1_assertTSType as assertTSType, index_d$1_assertTSTypeAliasDeclaration as assertTSTypeAliasDeclaration, index_d$1_assertTSTypeAnnotation as assertTSTypeAnnotation, index_d$1_assertTSTypeAssertion as assertTSTypeAssertion, index_d$1_assertTSTypeElement as assertTSTypeElement, index_d$1_assertTSTypeLiteral as assertTSTypeLiteral, index_d$1_assertTSTypeOperator as assertTSTypeOperator, index_d$1_assertTSTypeParameter as assertTSTypeParameter, index_d$1_assertTSTypeParameterDeclaration as assertTSTypeParameterDeclaration, index_d$1_assertTSTypeParameterInstantiation as assertTSTypeParameterInstantiation, index_d$1_assertTSTypePredicate as assertTSTypePredicate, index_d$1_assertTSTypeQuery as assertTSTypeQuery, index_d$1_assertTSTypeReference as assertTSTypeReference, index_d$1_assertTSUndefinedKeyword as assertTSUndefinedKeyword, index_d$1_assertTSUnionType as assertTSUnionType, index_d$1_assertTSUnknownKeyword as assertTSUnknownKeyword, index_d$1_assertTSVoidKeyword as assertTSVoidKeyword, index_d$1_assertTaggedTemplateExpression as assertTaggedTemplateExpression, index_d$1_assertTemplateElement as assertTemplateElement, index_d$1_assertTemplateLiteral as assertTemplateLiteral, index_d$1_assertTerminatorless as assertTerminatorless, index_d$1_assertThisExpression as assertThisExpression, index_d$1_assertThisTypeAnnotation as assertThisTypeAnnotation, index_d$1_assertThrowStatement as assertThrowStatement, index_d$1_assertTopicReference as assertTopicReference, index_d$1_assertTryStatement as assertTryStatement, index_d$1_assertTupleExpression as assertTupleExpression, index_d$1_assertTupleTypeAnnotation as assertTupleTypeAnnotation, index_d$1_assertTypeAlias as assertTypeAlias, index_d$1_assertTypeAnnotation as assertTypeAnnotation, index_d$1_assertTypeCastExpression as assertTypeCastExpression, index_d$1_assertTypeParameter as assertTypeParameter, index_d$1_assertTypeParameterDeclaration as assertTypeParameterDeclaration, index_d$1_assertTypeParameterInstantiation as assertTypeParameterInstantiation, index_d$1_assertTypeScript as assertTypeScript, index_d$1_assertTypeofTypeAnnotation as assertTypeofTypeAnnotation, index_d$1_assertUnaryExpression as assertUnaryExpression, index_d$1_assertUnaryLike as assertUnaryLike, index_d$1_assertUnionTypeAnnotation as assertUnionTypeAnnotation, index_d$1_assertUpdateExpression as assertUpdateExpression, index_d$1_assertUserWhitespacable as assertUserWhitespacable, index_d$1_assertV8IntrinsicIdentifier as assertV8IntrinsicIdentifier, index_d$1_assertVariableDeclaration as assertVariableDeclaration, index_d$1_assertVariableDeclarator as assertVariableDeclarator, index_d$1_assertVariance as assertVariance, index_d$1_assertVoidTypeAnnotation as assertVoidTypeAnnotation, index_d$1_assertWhile as assertWhile, index_d$1_assertWhileStatement as assertWhileStatement, index_d$1_assertWithStatement as assertWithStatement, index_d$1_assertYieldExpression as assertYieldExpression, index_d$1_assignmentExpression as assignmentExpression, index_d$1_assignmentPattern as assignmentPattern, index_d$1_awaitExpression as awaitExpression, index_d$1_bigIntLiteral as bigIntLiteral, index_d$1_binaryExpression as binaryExpression, index_d$1_bindExpression as bindExpression, index_d$1_blockStatement as blockStatement, index_d$1_booleanLiteral as booleanLiteral, index_d$1_booleanLiteralTypeAnnotation as booleanLiteralTypeAnnotation, index_d$1_booleanTypeAnnotation as booleanTypeAnnotation, index_d$1_breakStatement as breakStatement, index_d$1_buildMatchMemberExpression as buildMatchMemberExpression, index_d$1_buildUndefinedNode as buildUndefinedNode, index_d$1_callExpression as callExpression, index_d$1_catchClause as catchClause, index_d$1_classAccessorProperty as classAccessorProperty, index_d$1_classBody as classBody, index_d$1_classDeclaration as classDeclaration, index_d$1_classExpression as classExpression, index_d$1_classImplements as classImplements, index_d$1_classMethod as classMethod, index_d$1_classPrivateMethod as classPrivateMethod, index_d$1_classPrivateProperty as classPrivateProperty, index_d$1_classProperty as classProperty, index_d$1_clone as clone, index_d$1_cloneDeep as cloneDeep, index_d$1_cloneDeepWithoutLoc as cloneDeepWithoutLoc, index_d$1_cloneNode as cloneNode, index_d$1_cloneWithoutLoc as cloneWithoutLoc, index_d$1_conditionalExpression as conditionalExpression, index_d$1_continueStatement as continueStatement, index_d$1_createFlowUnionType as createFlowUnionType, index_d$1_createTSUnionType as createTSUnionType, _default$4 as createTypeAnnotationBasedOnTypeof, createFlowUnionType as createUnionTypeAnnotation, index_d$1_debuggerStatement as debuggerStatement, index_d$1_decimalLiteral as decimalLiteral, index_d$1_declareClass as declareClass, index_d$1_declareExportAllDeclaration as declareExportAllDeclaration, index_d$1_declareExportDeclaration as declareExportDeclaration, index_d$1_declareFunction as declareFunction, index_d$1_declareInterface as declareInterface, index_d$1_declareModule as declareModule, index_d$1_declareModuleExports as declareModuleExports, index_d$1_declareOpaqueType as declareOpaqueType, index_d$1_declareTypeAlias as declareTypeAlias, index_d$1_declareVariable as declareVariable, index_d$1_declaredPredicate as declaredPredicate, index_d$1_decorator as decorator, index_d$1_directive as directive, index_d$1_directiveLiteral as directiveLiteral, index_d$1_doExpression as doExpression, index_d$1_doWhileStatement as doWhileStatement, index_d$1_emptyStatement as emptyStatement, index_d$1_emptyTypeAnnotation as emptyTypeAnnotation, index_d$1_ensureBlock as ensureBlock, index_d$1_enumBooleanBody as enumBooleanBody, index_d$1_enumBooleanMember as enumBooleanMember, index_d$1_enumDeclaration as enumDeclaration, index_d$1_enumDefaultedMember as enumDefaultedMember, index_d$1_enumNumberBody as enumNumberBody, index_d$1_enumNumberMember as enumNumberMember, index_d$1_enumStringBody as enumStringBody, index_d$1_enumStringMember as enumStringMember, index_d$1_enumSymbolBody as enumSymbolBody, index_d$1_existsTypeAnnotation as existsTypeAnnotation, index_d$1_exportAllDeclaration as exportAllDeclaration, index_d$1_exportDefaultDeclaration as exportDefaultDeclaration, index_d$1_exportDefaultSpecifier as exportDefaultSpecifier, index_d$1_exportNamedDeclaration as exportNamedDeclaration, index_d$1_exportNamespaceSpecifier as exportNamespaceSpecifier, index_d$1_exportSpecifier as exportSpecifier, index_d$1_expressionStatement as expressionStatement, index_d$1_file as file, index_d$1_forInStatement as forInStatement, index_d$1_forOfStatement as forOfStatement, index_d$1_forStatement as forStatement, index_d$1_functionDeclaration as functionDeclaration, index_d$1_functionExpression as functionExpression, index_d$1_functionTypeAnnotation as functionTypeAnnotation, index_d$1_functionTypeParam as functionTypeParam, index_d$1_genericTypeAnnotation as genericTypeAnnotation, index_d$1_getAssignmentIdentifiers as getAssignmentIdentifiers, index_d$1_getBindingIdentifiers as getBindingIdentifiers, index_d$1_getFunctionName as getFunctionName, _default as getOuterBindingIdentifiers, index_d$1_identifier as identifier, index_d$1_ifStatement as ifStatement, _import as import, index_d$1_importAttribute as importAttribute, index_d$1_importDeclaration as importDeclaration, index_d$1_importDefaultSpecifier as importDefaultSpecifier, index_d$1_importExpression as importExpression, index_d$1_importNamespaceSpecifier as importNamespaceSpecifier, index_d$1_importSpecifier as importSpecifier, index_d$1_indexedAccessType as indexedAccessType, index_d$1_inferredPredicate as inferredPredicate, index_d$1_inheritInnerComments as inheritInnerComments, index_d$1_inheritLeadingComments as inheritLeadingComments, index_d$1_inheritTrailingComments as inheritTrailingComments, index_d$1_inherits as inherits, index_d$1_inheritsComments as inheritsComments, index_d$1_interfaceDeclaration as interfaceDeclaration, index_d$1_interfaceExtends as interfaceExtends, index_d$1_interfaceTypeAnnotation as interfaceTypeAnnotation, index_d$1_interpreterDirective as interpreterDirective, index_d$1_intersectionTypeAnnotation as intersectionTypeAnnotation, index_d$1_is as is, index_d$1_isAccessor as isAccessor, index_d$1_isAnyTypeAnnotation as isAnyTypeAnnotation, index_d$1_isArgumentPlaceholder as isArgumentPlaceholder, index_d$1_isArrayExpression as isArrayExpression, index_d$1_isArrayPattern as isArrayPattern, index_d$1_isArrayTypeAnnotation as isArrayTypeAnnotation, index_d$1_isArrowFunctionExpression as isArrowFunctionExpression, index_d$1_isAssignmentExpression as isAssignmentExpression, index_d$1_isAssignmentPattern as isAssignmentPattern, index_d$1_isAwaitExpression as isAwaitExpression, index_d$1_isBigIntLiteral as isBigIntLiteral, index_d$1_isBinary as isBinary, index_d$1_isBinaryExpression as isBinaryExpression, index_d$1_isBindExpression as isBindExpression, index_d$1_isBinding as isBinding, index_d$1_isBlock as isBlock, index_d$1_isBlockParent as isBlockParent, index_d$1_isBlockScoped as isBlockScoped, index_d$1_isBlockStatement as isBlockStatement, index_d$1_isBooleanLiteral as isBooleanLiteral, index_d$1_isBooleanLiteralTypeAnnotation as isBooleanLiteralTypeAnnotation, index_d$1_isBooleanTypeAnnotation as isBooleanTypeAnnotation, index_d$1_isBreakStatement as isBreakStatement, index_d$1_isCallExpression as isCallExpression, index_d$1_isCatchClause as isCatchClause, index_d$1_isClass as isClass, index_d$1_isClassAccessorProperty as isClassAccessorProperty, index_d$1_isClassBody as isClassBody, index_d$1_isClassDeclaration as isClassDeclaration, index_d$1_isClassExpression as isClassExpression, index_d$1_isClassImplements as isClassImplements, index_d$1_isClassMethod as isClassMethod, index_d$1_isClassPrivateMethod as isClassPrivateMethod, index_d$1_isClassPrivateProperty as isClassPrivateProperty, index_d$1_isClassProperty as isClassProperty, index_d$1_isCompletionStatement as isCompletionStatement, index_d$1_isConditional as isConditional, index_d$1_isConditionalExpression as isConditionalExpression, index_d$1_isContinueStatement as isContinueStatement, index_d$1_isDebuggerStatement as isDebuggerStatement, index_d$1_isDecimalLiteral as isDecimalLiteral, index_d$1_isDeclaration as isDeclaration, index_d$1_isDeclareClass as isDeclareClass, index_d$1_isDeclareExportAllDeclaration as isDeclareExportAllDeclaration, index_d$1_isDeclareExportDeclaration as isDeclareExportDeclaration, index_d$1_isDeclareFunction as isDeclareFunction, index_d$1_isDeclareInterface as isDeclareInterface, index_d$1_isDeclareModule as isDeclareModule, index_d$1_isDeclareModuleExports as isDeclareModuleExports, index_d$1_isDeclareOpaqueType as isDeclareOpaqueType, index_d$1_isDeclareTypeAlias as isDeclareTypeAlias, index_d$1_isDeclareVariable as isDeclareVariable, index_d$1_isDeclaredPredicate as isDeclaredPredicate, index_d$1_isDecorator as isDecorator, index_d$1_isDirective as isDirective, index_d$1_isDirectiveLiteral as isDirectiveLiteral, index_d$1_isDoExpression as isDoExpression, index_d$1_isDoWhileStatement as isDoWhileStatement, index_d$1_isEmptyStatement as isEmptyStatement, index_d$1_isEmptyTypeAnnotation as isEmptyTypeAnnotation, index_d$1_isEnumBody as isEnumBody, index_d$1_isEnumBooleanBody as isEnumBooleanBody, index_d$1_isEnumBooleanMember as isEnumBooleanMember, index_d$1_isEnumDeclaration as isEnumDeclaration, index_d$1_isEnumDefaultedMember as isEnumDefaultedMember, index_d$1_isEnumMember as isEnumMember, index_d$1_isEnumNumberBody as isEnumNumberBody, index_d$1_isEnumNumberMember as isEnumNumberMember, index_d$1_isEnumStringBody as isEnumStringBody, index_d$1_isEnumStringMember as isEnumStringMember, index_d$1_isEnumSymbolBody as isEnumSymbolBody, index_d$1_isExistsTypeAnnotation as isExistsTypeAnnotation, index_d$1_isExportAllDeclaration as isExportAllDeclaration, index_d$1_isExportDeclaration as isExportDeclaration, index_d$1_isExportDefaultDeclaration as isExportDefaultDeclaration, index_d$1_isExportDefaultSpecifier as isExportDefaultSpecifier, index_d$1_isExportNamedDeclaration as isExportNamedDeclaration, index_d$1_isExportNamespaceSpecifier as isExportNamespaceSpecifier, index_d$1_isExportSpecifier as isExportSpecifier, index_d$1_isExpression as isExpression, index_d$1_isExpressionStatement as isExpressionStatement, index_d$1_isExpressionWrapper as isExpressionWrapper, index_d$1_isFile as isFile, index_d$1_isFlow as isFlow, index_d$1_isFlowBaseAnnotation as isFlowBaseAnnotation, index_d$1_isFlowDeclaration as isFlowDeclaration, index_d$1_isFlowPredicate as isFlowPredicate, index_d$1_isFlowType as isFlowType, index_d$1_isFor as isFor, index_d$1_isForInStatement as isForInStatement, index_d$1_isForOfStatement as isForOfStatement, index_d$1_isForStatement as isForStatement, index_d$1_isForXStatement as isForXStatement, index_d$1_isFunction as isFunction, index_d$1_isFunctionDeclaration as isFunctionDeclaration, index_d$1_isFunctionExpression as isFunctionExpression, index_d$1_isFunctionParent as isFunctionParent, index_d$1_isFunctionTypeAnnotation as isFunctionTypeAnnotation, index_d$1_isFunctionTypeParam as isFunctionTypeParam, index_d$1_isGenericTypeAnnotation as isGenericTypeAnnotation, index_d$1_isIdentifier as isIdentifier, index_d$1_isIfStatement as isIfStatement, index_d$1_isImmutable as isImmutable, index_d$1_isImport as isImport, index_d$1_isImportAttribute as isImportAttribute, index_d$1_isImportDeclaration as isImportDeclaration, index_d$1_isImportDefaultSpecifier as isImportDefaultSpecifier, index_d$1_isImportExpression as isImportExpression, index_d$1_isImportNamespaceSpecifier as isImportNamespaceSpecifier, index_d$1_isImportOrExportDeclaration as isImportOrExportDeclaration, index_d$1_isImportSpecifier as isImportSpecifier, index_d$1_isIndexedAccessType as isIndexedAccessType, index_d$1_isInferredPredicate as isInferredPredicate, index_d$1_isInterfaceDeclaration as isInterfaceDeclaration, index_d$1_isInterfaceExtends as isInterfaceExtends, index_d$1_isInterfaceTypeAnnotation as isInterfaceTypeAnnotation, index_d$1_isInterpreterDirective as isInterpreterDirective, index_d$1_isIntersectionTypeAnnotation as isIntersectionTypeAnnotation, index_d$1_isJSX as isJSX, index_d$1_isJSXAttribute as isJSXAttribute, index_d$1_isJSXClosingElement as isJSXClosingElement, index_d$1_isJSXClosingFragment as isJSXClosingFragment, index_d$1_isJSXElement as isJSXElement, index_d$1_isJSXEmptyExpression as isJSXEmptyExpression, index_d$1_isJSXExpressionContainer as isJSXExpressionContainer, index_d$1_isJSXFragment as isJSXFragment, index_d$1_isJSXIdentifier as isJSXIdentifier, index_d$1_isJSXMemberExpression as isJSXMemberExpression, index_d$1_isJSXNamespacedName as isJSXNamespacedName, index_d$1_isJSXOpeningElement as isJSXOpeningElement, index_d$1_isJSXOpeningFragment as isJSXOpeningFragment, index_d$1_isJSXSpreadAttribute as isJSXSpreadAttribute, index_d$1_isJSXSpreadChild as isJSXSpreadChild, index_d$1_isJSXText as isJSXText, index_d$1_isLVal as isLVal, index_d$1_isLabeledStatement as isLabeledStatement, index_d$1_isLet as isLet, index_d$1_isLiteral as isLiteral, index_d$1_isLogicalExpression as isLogicalExpression, index_d$1_isLoop as isLoop, index_d$1_isMemberExpression as isMemberExpression, index_d$1_isMetaProperty as isMetaProperty, index_d$1_isMethod as isMethod, index_d$1_isMiscellaneous as isMiscellaneous, index_d$1_isMixedTypeAnnotation as isMixedTypeAnnotation, index_d$1_isModuleDeclaration as isModuleDeclaration, index_d$1_isModuleExpression as isModuleExpression, index_d$1_isModuleSpecifier as isModuleSpecifier, index_d$1_isNewExpression as isNewExpression, index_d$1_isNode as isNode, index_d$1_isNodesEquivalent as isNodesEquivalent, index_d$1_isNoop as isNoop, index_d$1_isNullLiteral as isNullLiteral, index_d$1_isNullLiteralTypeAnnotation as isNullLiteralTypeAnnotation, index_d$1_isNullableTypeAnnotation as isNullableTypeAnnotation, index_d$1_isNumberLiteral as isNumberLiteral, index_d$1_isNumberLiteralTypeAnnotation as isNumberLiteralTypeAnnotation, index_d$1_isNumberTypeAnnotation as isNumberTypeAnnotation, index_d$1_isNumericLiteral as isNumericLiteral, index_d$1_isObjectExpression as isObjectExpression, index_d$1_isObjectMember as isObjectMember, index_d$1_isObjectMethod as isObjectMethod, index_d$1_isObjectPattern as isObjectPattern, index_d$1_isObjectProperty as isObjectProperty, index_d$1_isObjectTypeAnnotation as isObjectTypeAnnotation, index_d$1_isObjectTypeCallProperty as isObjectTypeCallProperty, index_d$1_isObjectTypeIndexer as isObjectTypeIndexer, index_d$1_isObjectTypeInternalSlot as isObjectTypeInternalSlot, index_d$1_isObjectTypeProperty as isObjectTypeProperty, index_d$1_isObjectTypeSpreadProperty as isObjectTypeSpreadProperty, index_d$1_isOpaqueType as isOpaqueType, index_d$1_isOptionalCallExpression as isOptionalCallExpression, index_d$1_isOptionalIndexedAccessType as isOptionalIndexedAccessType, index_d$1_isOptionalMemberExpression as isOptionalMemberExpression, index_d$1_isParenthesizedExpression as isParenthesizedExpression, index_d$1_isPattern as isPattern, index_d$1_isPatternLike as isPatternLike, index_d$1_isPipelineBareFunction as isPipelineBareFunction, index_d$1_isPipelinePrimaryTopicReference as isPipelinePrimaryTopicReference, index_d$1_isPipelineTopicExpression as isPipelineTopicExpression, index_d$1_isPlaceholder as isPlaceholder, index_d$1_isPlaceholderType as isPlaceholderType, index_d$1_isPrivate as isPrivate, index_d$1_isPrivateName as isPrivateName, index_d$1_isProgram as isProgram, index_d$1_isProperty as isProperty, index_d$1_isPureish as isPureish, index_d$1_isQualifiedTypeIdentifier as isQualifiedTypeIdentifier, index_d$1_isRecordExpression as isRecordExpression, index_d$1_isReferenced as isReferenced, index_d$1_isRegExpLiteral as isRegExpLiteral, index_d$1_isRegexLiteral as isRegexLiteral, index_d$1_isRestElement as isRestElement, index_d$1_isRestProperty as isRestProperty, index_d$1_isReturnStatement as isReturnStatement, index_d$1_isScopable as isScopable, index_d$1_isScope as isScope, index_d$1_isSequenceExpression as isSequenceExpression, index_d$1_isSpecifierDefault as isSpecifierDefault, index_d$1_isSpreadElement as isSpreadElement, index_d$1_isSpreadProperty as isSpreadProperty, index_d$1_isStandardized as isStandardized, index_d$1_isStatement as isStatement, index_d$1_isStaticBlock as isStaticBlock, index_d$1_isStringLiteral as isStringLiteral, index_d$1_isStringLiteralTypeAnnotation as isStringLiteralTypeAnnotation, index_d$1_isStringTypeAnnotation as isStringTypeAnnotation, index_d$1_isSuper as isSuper, index_d$1_isSwitchCase as isSwitchCase, index_d$1_isSwitchStatement as isSwitchStatement, index_d$1_isSymbolTypeAnnotation as isSymbolTypeAnnotation, index_d$1_isTSAnyKeyword as isTSAnyKeyword, index_d$1_isTSArrayType as isTSArrayType, index_d$1_isTSAsExpression as isTSAsExpression, index_d$1_isTSBaseType as isTSBaseType, index_d$1_isTSBigIntKeyword as isTSBigIntKeyword, index_d$1_isTSBooleanKeyword as isTSBooleanKeyword, index_d$1_isTSCallSignatureDeclaration as isTSCallSignatureDeclaration, index_d$1_isTSConditionalType as isTSConditionalType, index_d$1_isTSConstructSignatureDeclaration as isTSConstructSignatureDeclaration, index_d$1_isTSConstructorType as isTSConstructorType, index_d$1_isTSDeclareFunction as isTSDeclareFunction, index_d$1_isTSDeclareMethod as isTSDeclareMethod, index_d$1_isTSEntityName as isTSEntityName, index_d$1_isTSEnumBody as isTSEnumBody, index_d$1_isTSEnumDeclaration as isTSEnumDeclaration, index_d$1_isTSEnumMember as isTSEnumMember, index_d$1_isTSExportAssignment as isTSExportAssignment, index_d$1_isTSExpressionWithTypeArguments as isTSExpressionWithTypeArguments, index_d$1_isTSExternalModuleReference as isTSExternalModuleReference, index_d$1_isTSFunctionType as isTSFunctionType, index_d$1_isTSImportEqualsDeclaration as isTSImportEqualsDeclaration, index_d$1_isTSImportType as isTSImportType, index_d$1_isTSIndexSignature as isTSIndexSignature, index_d$1_isTSIndexedAccessType as isTSIndexedAccessType, index_d$1_isTSInferType as isTSInferType, index_d$1_isTSInstantiationExpression as isTSInstantiationExpression, index_d$1_isTSInterfaceBody as isTSInterfaceBody, index_d$1_isTSInterfaceDeclaration as isTSInterfaceDeclaration, index_d$1_isTSIntersectionType as isTSIntersectionType, index_d$1_isTSIntrinsicKeyword as isTSIntrinsicKeyword, index_d$1_isTSLiteralType as isTSLiteralType, index_d$1_isTSMappedType as isTSMappedType, index_d$1_isTSMethodSignature as isTSMethodSignature, index_d$1_isTSModuleBlock as isTSModuleBlock, index_d$1_isTSModuleDeclaration as isTSModuleDeclaration, index_d$1_isTSNamedTupleMember as isTSNamedTupleMember, index_d$1_isTSNamespaceExportDeclaration as isTSNamespaceExportDeclaration, index_d$1_isTSNeverKeyword as isTSNeverKeyword, index_d$1_isTSNonNullExpression as isTSNonNullExpression, index_d$1_isTSNullKeyword as isTSNullKeyword, index_d$1_isTSNumberKeyword as isTSNumberKeyword, index_d$1_isTSObjectKeyword as isTSObjectKeyword, index_d$1_isTSOptionalType as isTSOptionalType, index_d$1_isTSParameterProperty as isTSParameterProperty, index_d$1_isTSParenthesizedType as isTSParenthesizedType, index_d$1_isTSPropertySignature as isTSPropertySignature, index_d$1_isTSQualifiedName as isTSQualifiedName, index_d$1_isTSRestType as isTSRestType, index_d$1_isTSSatisfiesExpression as isTSSatisfiesExpression, index_d$1_isTSStringKeyword as isTSStringKeyword, index_d$1_isTSSymbolKeyword as isTSSymbolKeyword, index_d$1_isTSTemplateLiteralType as isTSTemplateLiteralType, index_d$1_isTSThisType as isTSThisType, index_d$1_isTSTupleType as isTSTupleType, index_d$1_isTSType as isTSType, index_d$1_isTSTypeAliasDeclaration as isTSTypeAliasDeclaration, index_d$1_isTSTypeAnnotation as isTSTypeAnnotation, index_d$1_isTSTypeAssertion as isTSTypeAssertion, index_d$1_isTSTypeElement as isTSTypeElement, index_d$1_isTSTypeLiteral as isTSTypeLiteral, index_d$1_isTSTypeOperator as isTSTypeOperator, index_d$1_isTSTypeParameter as isTSTypeParameter, index_d$1_isTSTypeParameterDeclaration as isTSTypeParameterDeclaration, index_d$1_isTSTypeParameterInstantiation as isTSTypeParameterInstantiation, index_d$1_isTSTypePredicate as isTSTypePredicate, index_d$1_isTSTypeQuery as isTSTypeQuery, index_d$1_isTSTypeReference as isTSTypeReference, index_d$1_isTSUndefinedKeyword as isTSUndefinedKeyword, index_d$1_isTSUnionType as isTSUnionType, index_d$1_isTSUnknownKeyword as isTSUnknownKeyword, index_d$1_isTSVoidKeyword as isTSVoidKeyword, index_d$1_isTaggedTemplateExpression as isTaggedTemplateExpression, index_d$1_isTemplateElement as isTemplateElement, index_d$1_isTemplateLiteral as isTemplateLiteral, index_d$1_isTerminatorless as isTerminatorless, index_d$1_isThisExpression as isThisExpression, index_d$1_isThisTypeAnnotation as isThisTypeAnnotation, index_d$1_isThrowStatement as isThrowStatement, index_d$1_isTopicReference as isTopicReference, index_d$1_isTryStatement as isTryStatement, index_d$1_isTupleExpression as isTupleExpression, index_d$1_isTupleTypeAnnotation as isTupleTypeAnnotation, index_d$1_isType as isType, index_d$1_isTypeAlias as isTypeAlias, index_d$1_isTypeAnnotation as isTypeAnnotation, index_d$1_isTypeCastExpression as isTypeCastExpression, index_d$1_isTypeParameter as isTypeParameter, index_d$1_isTypeParameterDeclaration as isTypeParameterDeclaration, index_d$1_isTypeParameterInstantiation as isTypeParameterInstantiation, index_d$1_isTypeScript as isTypeScript, index_d$1_isTypeofTypeAnnotation as isTypeofTypeAnnotation, index_d$1_isUnaryExpression as isUnaryExpression, index_d$1_isUnaryLike as isUnaryLike, index_d$1_isUnionTypeAnnotation as isUnionTypeAnnotation, index_d$1_isUpdateExpression as isUpdateExpression, index_d$1_isUserWhitespacable as isUserWhitespacable, index_d$1_isV8IntrinsicIdentifier as isV8IntrinsicIdentifier, index_d$1_isValidES3Identifier as isValidES3Identifier, index_d$1_isValidIdentifier as isValidIdentifier, index_d$1_isVar as isVar, index_d$1_isVariableDeclaration as isVariableDeclaration, index_d$1_isVariableDeclarator as isVariableDeclarator, index_d$1_isVariance as isVariance, index_d$1_isVoidTypeAnnotation as isVoidTypeAnnotation, index_d$1_isWhile as isWhile, index_d$1_isWhileStatement as isWhileStatement, index_d$1_isWithStatement as isWithStatement, index_d$1_isYieldExpression as isYieldExpression, jsxAttribute as jSXAttribute, jsxClosingElement as jSXClosingElement, jsxClosingFragment as jSXClosingFragment, jsxElement as jSXElement, jsxEmptyExpression as jSXEmptyExpression, jsxExpressionContainer as jSXExpressionContainer, jsxFragment as jSXFragment, jsxIdentifier as jSXIdentifier, jsxMemberExpression as jSXMemberExpression, jsxNamespacedName as jSXNamespacedName, jsxOpeningElement as jSXOpeningElement, jsxOpeningFragment as jSXOpeningFragment, jsxSpreadAttribute as jSXSpreadAttribute, jsxSpreadChild as jSXSpreadChild, jsxText as jSXText, index_d$1_jsxAttribute as jsxAttribute, index_d$1_jsxClosingElement as jsxClosingElement, index_d$1_jsxClosingFragment as jsxClosingFragment, index_d$1_jsxElement as jsxElement, index_d$1_jsxEmptyExpression as jsxEmptyExpression, index_d$1_jsxExpressionContainer as jsxExpressionContainer, index_d$1_jsxFragment as jsxFragment, index_d$1_jsxIdentifier as jsxIdentifier, index_d$1_jsxMemberExpression as jsxMemberExpression, index_d$1_jsxNamespacedName as jsxNamespacedName, index_d$1_jsxOpeningElement as jsxOpeningElement, index_d$1_jsxOpeningFragment as jsxOpeningFragment, index_d$1_jsxSpreadAttribute as jsxSpreadAttribute, index_d$1_jsxSpreadChild as jsxSpreadChild, index_d$1_jsxText as jsxText, index_d$1_labeledStatement as labeledStatement, index_d$1_logicalExpression as logicalExpression, index_d$1_matchesPattern as matchesPattern, index_d$1_memberExpression as memberExpression, index_d$1_metaProperty as metaProperty, index_d$1_mixedTypeAnnotation as mixedTypeAnnotation, index_d$1_moduleExpression as moduleExpression, index_d$1_newExpression as newExpression, index_d$1_noop as noop, index_d$1_nullLiteral as nullLiteral, index_d$1_nullLiteralTypeAnnotation as nullLiteralTypeAnnotation, index_d$1_nullableTypeAnnotation as nullableTypeAnnotation, NumberLiteral as numberLiteral, index_d$1_numberLiteralTypeAnnotation as numberLiteralTypeAnnotation, index_d$1_numberTypeAnnotation as numberTypeAnnotation, index_d$1_numericLiteral as numericLiteral, index_d$1_objectExpression as objectExpression, index_d$1_objectMethod as objectMethod, index_d$1_objectPattern as objectPattern, index_d$1_objectProperty as objectProperty, index_d$1_objectTypeAnnotation as objectTypeAnnotation, index_d$1_objectTypeCallProperty as objectTypeCallProperty, index_d$1_objectTypeIndexer as objectTypeIndexer, index_d$1_objectTypeInternalSlot as objectTypeInternalSlot, index_d$1_objectTypeProperty as objectTypeProperty, index_d$1_objectTypeSpreadProperty as objectTypeSpreadProperty, index_d$1_opaqueType as opaqueType, index_d$1_optionalCallExpression as optionalCallExpression, index_d$1_optionalIndexedAccessType as optionalIndexedAccessType, index_d$1_optionalMemberExpression as optionalMemberExpression, index_d$1_parenthesizedExpression as parenthesizedExpression, index_d$1_pipelineBareFunction as pipelineBareFunction, index_d$1_pipelinePrimaryTopicReference as pipelinePrimaryTopicReference, index_d$1_pipelineTopicExpression as pipelineTopicExpression, index_d$1_placeholder as placeholder, index_d$1_prependToMemberExpression as prependToMemberExpression, index_d$1_privateName as privateName, program$1 as program, index_d$1_qualifiedTypeIdentifier as qualifiedTypeIdentifier, index_d$1_react as react, index_d$1_recordExpression as recordExpression, index_d$1_regExpLiteral as regExpLiteral, RegexLiteral as regexLiteral, index_d$1_removeComments as removeComments, index_d$1_removeProperties as removeProperties, index_d$1_removePropertiesDeep as removePropertiesDeep, index_d$1_removeTypeDuplicates as removeTypeDuplicates, index_d$1_restElement as restElement, RestProperty as restProperty, index_d$1_returnStatement as returnStatement, index_d$1_sequenceExpression as sequenceExpression, index_d$1_shallowEqual as shallowEqual, index_d$1_spreadElement as spreadElement, SpreadProperty as spreadProperty, index_d$1_staticBlock as staticBlock, index_d$1_stringLiteral as stringLiteral, index_d$1_stringLiteralTypeAnnotation as stringLiteralTypeAnnotation, index_d$1_stringTypeAnnotation as stringTypeAnnotation, _super as super, index_d$1_switchCase as switchCase, index_d$1_switchStatement as switchStatement, index_d$1_symbolTypeAnnotation as symbolTypeAnnotation, tsAnyKeyword as tSAnyKeyword, tsArrayType as tSArrayType, tsAsExpression as tSAsExpression, tsBigIntKeyword as tSBigIntKeyword, tsBooleanKeyword as tSBooleanKeyword, tsCallSignatureDeclaration as tSCallSignatureDeclaration, tsConditionalType as tSConditionalType, tsConstructSignatureDeclaration as tSConstructSignatureDeclaration, tsConstructorType as tSConstructorType, tsDeclareFunction as tSDeclareFunction, tsDeclareMethod as tSDeclareMethod, tsEnumBody as tSEnumBody, tsEnumDeclaration as tSEnumDeclaration, tsEnumMember as tSEnumMember, tsExportAssignment as tSExportAssignment, tsExpressionWithTypeArguments as tSExpressionWithTypeArguments, tsExternalModuleReference as tSExternalModuleReference, tsFunctionType as tSFunctionType, tsImportEqualsDeclaration as tSImportEqualsDeclaration, tsImportType as tSImportType, tsIndexSignature as tSIndexSignature, tsIndexedAccessType as tSIndexedAccessType, tsInferType as tSInferType, tsInstantiationExpression as tSInstantiationExpression, tsInterfaceBody as tSInterfaceBody, tsInterfaceDeclaration as tSInterfaceDeclaration, tsIntersectionType as tSIntersectionType, tsIntrinsicKeyword as tSIntrinsicKeyword, tsLiteralType as tSLiteralType, tsMappedType as tSMappedType, tsMethodSignature as tSMethodSignature, tsModuleBlock as tSModuleBlock, tsModuleDeclaration as tSModuleDeclaration, tsNamedTupleMember as tSNamedTupleMember, tsNamespaceExportDeclaration as tSNamespaceExportDeclaration, tsNeverKeyword as tSNeverKeyword, tsNonNullExpression as tSNonNullExpression, tsNullKeyword as tSNullKeyword, tsNumberKeyword as tSNumberKeyword, tsObjectKeyword as tSObjectKeyword, tsOptionalType as tSOptionalType, tsParameterProperty as tSParameterProperty, tsParenthesizedType as tSParenthesizedType, tsPropertySignature as tSPropertySignature, tsQualifiedName as tSQualifiedName, tsRestType as tSRestType, tsSatisfiesExpression as tSSatisfiesExpression, tsStringKeyword as tSStringKeyword, tsSymbolKeyword as tSSymbolKeyword, tsTemplateLiteralType as tSTemplateLiteralType, tsThisType as tSThisType, tsTupleType as tSTupleType, tsTypeAliasDeclaration as tSTypeAliasDeclaration, tsTypeAnnotation as tSTypeAnnotation, tsTypeAssertion as tSTypeAssertion, tsTypeLiteral as tSTypeLiteral, tsTypeOperator as tSTypeOperator, tsTypeParameter as tSTypeParameter, tsTypeParameterDeclaration as tSTypeParameterDeclaration, tsTypeParameterInstantiation as tSTypeParameterInstantiation, tsTypePredicate as tSTypePredicate, tsTypeQuery as tSTypeQuery, tsTypeReference as tSTypeReference, tsUndefinedKeyword as tSUndefinedKeyword, tsUnionType as tSUnionType, tsUnknownKeyword as tSUnknownKeyword, tsVoidKeyword as tSVoidKeyword, index_d$1_taggedTemplateExpression as taggedTemplateExpression, index_d$1_templateElement as templateElement, index_d$1_templateLiteral as templateLiteral, index_d$1_thisExpression as thisExpression, index_d$1_thisTypeAnnotation as thisTypeAnnotation, index_d$1_throwStatement as throwStatement, index_d$1_toBindingIdentifierName as toBindingIdentifierName, index_d$1_toBlock as toBlock, index_d$1_toComputedKey as toComputedKey, _default$3 as toExpression, index_d$1_toIdentifier as toIdentifier, index_d$1_toKeyAlias as toKeyAlias, _default$2 as toStatement, index_d$1_topicReference as topicReference, traverse$2 as traverse, index_d$1_traverseFast as traverseFast, index_d$1_tryStatement as tryStatement, index_d$1_tsAnyKeyword as tsAnyKeyword, index_d$1_tsArrayType as tsArrayType, index_d$1_tsAsExpression as tsAsExpression, index_d$1_tsBigIntKeyword as tsBigIntKeyword, index_d$1_tsBooleanKeyword as tsBooleanKeyword, index_d$1_tsCallSignatureDeclaration as tsCallSignatureDeclaration, index_d$1_tsConditionalType as tsConditionalType, index_d$1_tsConstructSignatureDeclaration as tsConstructSignatureDeclaration, index_d$1_tsConstructorType as tsConstructorType, index_d$1_tsDeclareFunction as tsDeclareFunction, index_d$1_tsDeclareMethod as tsDeclareMethod, index_d$1_tsEnumBody as tsEnumBody, index_d$1_tsEnumDeclaration as tsEnumDeclaration, index_d$1_tsEnumMember as tsEnumMember, index_d$1_tsExportAssignment as tsExportAssignment, index_d$1_tsExpressionWithTypeArguments as tsExpressionWithTypeArguments, index_d$1_tsExternalModuleReference as tsExternalModuleReference, index_d$1_tsFunctionType as tsFunctionType, index_d$1_tsImportEqualsDeclaration as tsImportEqualsDeclaration, index_d$1_tsImportType as tsImportType, index_d$1_tsIndexSignature as tsIndexSignature, index_d$1_tsIndexedAccessType as tsIndexedAccessType, index_d$1_tsInferType as tsInferType, index_d$1_tsInstantiationExpression as tsInstantiationExpression, index_d$1_tsInterfaceBody as tsInterfaceBody, index_d$1_tsInterfaceDeclaration as tsInterfaceDeclaration, index_d$1_tsIntersectionType as tsIntersectionType, index_d$1_tsIntrinsicKeyword as tsIntrinsicKeyword, index_d$1_tsLiteralType as tsLiteralType, index_d$1_tsMappedType as tsMappedType, index_d$1_tsMethodSignature as tsMethodSignature, index_d$1_tsModuleBlock as tsModuleBlock, index_d$1_tsModuleDeclaration as tsModuleDeclaration, index_d$1_tsNamedTupleMember as tsNamedTupleMember, index_d$1_tsNamespaceExportDeclaration as tsNamespaceExportDeclaration, index_d$1_tsNeverKeyword as tsNeverKeyword, index_d$1_tsNonNullExpression as tsNonNullExpression, index_d$1_tsNullKeyword as tsNullKeyword, index_d$1_tsNumberKeyword as tsNumberKeyword, index_d$1_tsObjectKeyword as tsObjectKeyword, index_d$1_tsOptionalType as tsOptionalType, index_d$1_tsParameterProperty as tsParameterProperty, index_d$1_tsParenthesizedType as tsParenthesizedType, index_d$1_tsPropertySignature as tsPropertySignature, index_d$1_tsQualifiedName as tsQualifiedName, index_d$1_tsRestType as tsRestType, index_d$1_tsSatisfiesExpression as tsSatisfiesExpression, index_d$1_tsStringKeyword as tsStringKeyword, index_d$1_tsSymbolKeyword as tsSymbolKeyword, index_d$1_tsTemplateLiteralType as tsTemplateLiteralType, index_d$1_tsThisType as tsThisType, index_d$1_tsTupleType as tsTupleType, index_d$1_tsTypeAliasDeclaration as tsTypeAliasDeclaration, index_d$1_tsTypeAnnotation as tsTypeAnnotation, index_d$1_tsTypeAssertion as tsTypeAssertion, index_d$1_tsTypeLiteral as tsTypeLiteral, index_d$1_tsTypeOperator as tsTypeOperator, index_d$1_tsTypeParameter as tsTypeParameter, index_d$1_tsTypeParameterDeclaration as tsTypeParameterDeclaration, index_d$1_tsTypeParameterInstantiation as tsTypeParameterInstantiation, index_d$1_tsTypePredicate as tsTypePredicate, index_d$1_tsTypeQuery as tsTypeQuery, index_d$1_tsTypeReference as tsTypeReference, index_d$1_tsUndefinedKeyword as tsUndefinedKeyword, index_d$1_tsUnionType as tsUnionType, index_d$1_tsUnknownKeyword as tsUnknownKeyword, index_d$1_tsVoidKeyword as tsVoidKeyword, index_d$1_tupleExpression as tupleExpression, index_d$1_tupleTypeAnnotation as tupleTypeAnnotation, index_d$1_typeAlias as typeAlias, index_d$1_typeAnnotation as typeAnnotation, index_d$1_typeCastExpression as typeCastExpression, index_d$1_typeParameter as typeParameter, index_d$1_typeParameterDeclaration as typeParameterDeclaration, index_d$1_typeParameterInstantiation as typeParameterInstantiation, index_d$1_typeofTypeAnnotation as typeofTypeAnnotation, index_d$1_unaryExpression as unaryExpression, index_d$1_unionTypeAnnotation as unionTypeAnnotation, index_d$1_updateExpression as updateExpression, index_d$1_v8IntrinsicIdentifier as v8IntrinsicIdentifier, index_d$1_validate as validate, _default$1 as valueToNode, index_d$1_variableDeclaration as variableDeclaration, index_d$1_variableDeclarator as variableDeclarator, index_d$1_variance as variance, index_d$1_voidTypeAnnotation as voidTypeAnnotation, index_d$1_whileStatement as whileStatement, index_d$1_withStatement as withStatement, index_d$1_yieldExpression as yieldExpression };
4600
4607
  }
4601
4608
 
4602
4609
  // This file is auto-generated! Do not modify it directly.
@@ -4725,6 +4732,11 @@ interface Options {
4725
4732
  * Set this to true to allow export statements to reference undeclared variables.
4726
4733
  */
4727
4734
  allowUndeclaredExports?: boolean;
4735
+ /**
4736
+ * By default, yield use is not allowed outside of a generator function.
4737
+ * Set this to true to accept such code.
4738
+ */
4739
+ allowYieldOutsideFunction?: boolean;
4728
4740
  /**
4729
4741
  * By default, Babel parser JavaScript code according to Annex B syntax.
4730
4742
  * Set this to `false` to disable such behavior.
@@ -4924,6 +4936,12 @@ interface GeneratorOptions {
4924
4936
  */
4925
4937
  decoratorsBeforeExport?: boolean | undefined;
4926
4938
 
4939
+ /**
4940
+ * The import attributes/assertions syntax to use.
4941
+ * When not specified, @babel/generator will try to match the style in the input code based on the AST shape.
4942
+ */
4943
+ importAttributesKeyword?: "with" | "assert" | "with-legacy";
4944
+
4927
4945
  /**
4928
4946
  * Options for outputting jsesc representation.
4929
4947
  */
@@ -5025,6 +5043,7 @@ declare function generate$1(
5025
5043
  code?: string | { [filename: string]: string },
5026
5044
  ): GeneratorResult;
5027
5045
 
5046
+
5028
5047
  interface GeneratorResult {
5029
5048
  code: string;
5030
5049
  map: {