@putout/plugin-putout 23.15.1 → 24.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -0
- package/lib/add-await-to-progress/index.js +4 -5
- package/lib/add-index-to-import/index.js +6 -10
- package/lib/add-path-arg-to-fix/index.js +4 -5
- package/lib/add-path-arg-to-visitors/index.js +4 -5
- package/lib/add-places-to-compare-places/index.js +2 -4
- package/lib/add-test-args/index.js +12 -3
- package/lib/add-track-file/index.js +12 -3
- package/lib/add-traverse-args/index.js +6 -7
- package/lib/apply-async-formatter/index.js +3 -4
- package/lib/apply-create-nested-directory/index.js +4 -5
- package/lib/apply-create-test/index.js +2 -4
- package/lib/apply-declare/index.js +2 -4
- package/lib/apply-exports-to-add-args/index.js +12 -0
- package/lib/apply-fixture-name-to-message/index.js +4 -5
- package/lib/apply-for-of-to-track-file/index.js +2 -4
- package/lib/apply-insert-after/index.js +2 -4
- package/lib/apply-insert-before/index.js +2 -4
- package/lib/apply-lowercase-to-node-builders/index.js +4 -5
- package/lib/apply-namespace-specifier/index.js +5 -7
- package/lib/apply-parens/index.js +2 -4
- package/lib/apply-processors-destructuring/index.js +2 -4
- package/lib/apply-remove/index.js +2 -4
- package/lib/apply-rename/index.js +2 -4
- package/lib/apply-report/index.js +3 -4
- package/lib/apply-short-processors/index.js +4 -6
- package/lib/apply-vars/index.js +4 -5
- package/lib/check-declare/index.js +5 -8
- package/lib/check-match/index.js +4 -6
- package/lib/check-replace-code/generate-code/index.js +5 -8
- package/lib/check-replace-code/generate-code/plugin-generate.js +4 -6
- package/lib/check-replace-code/index.js +7 -9
- package/lib/convert-add-argument-to-add-args/index.js +3 -4
- package/lib/convert-babel-types/index.js +4 -6
- package/lib/convert-destructuring-to-identifier/index.js +5 -5
- package/lib/convert-dirname-to-url/index.js +4 -5
- package/lib/convert-find-to-traverse/index.js +4 -6
- package/lib/convert-get-rule-to-require/index.js +9 -11
- package/lib/convert-include-to-traverse/index.js +4 -5
- package/lib/convert-match-to-function/index.js +2 -4
- package/lib/convert-method-to-property/index.js +5 -7
- package/lib/convert-node-to-path-in-get-template-values/index.js +4 -6
- package/lib/convert-number-to-numeric/index.js +4 -5
- package/lib/convert-process-to-find/index.js +4 -4
- package/lib/convert-progress-to-track-file/index.js +4 -6
- package/lib/convert-putout-test-to-create-test/index.js +5 -6
- package/lib/convert-replace-to-function/index.js +2 -4
- package/lib/convert-replace-with/index.js +6 -8
- package/lib/convert-replace-with-multiple/index.js +5 -7
- package/lib/convert-report-to-function/index.js +4 -5
- package/lib/convert-to-no-transform-code/index.js +4 -5
- package/lib/convert-traverse-to-include/index.js +5 -7
- package/lib/convert-traverse-to-replace/index.js +4 -5
- package/lib/convert-traverse-to-scan/index.js +5 -7
- package/lib/convert-url-to-dirname/index.js +4 -5
- package/lib/create-test/index.js +5 -6
- package/lib/declare/get-rule.js +4 -4
- package/lib/declare/index.js +4 -6
- package/lib/declare/operator/filesystem.js +2 -3
- package/lib/declare/operator/index.js +5 -7
- package/lib/declare/operator/json.js +1 -3
- package/lib/declare/operator/keyword.js +1 -3
- package/lib/declare/operator/parens.js +1 -3
- package/lib/declare/types.js +1179 -0
- package/lib/declare-path-variable/index.js +4 -5
- package/lib/declare-template-variables/index.js +4 -5
- package/lib/includer/index.js +2 -4
- package/lib/index.js +68 -68
- package/lib/move-require-on-top-level/index.js +5 -7
- package/lib/remove-empty-array-from-process/index.js +2 -4
- package/lib/remove-unused-get-properties-argument/index.js +4 -5
- package/lib/remove-useless-printer-option/index.js +4 -5
- package/lib/rename-operate-to-operator/index.js +5 -6
- package/lib/replace-operate-with-operator/index.js +2 -4
- package/lib/replace-test-message/index.js +4 -5
- package/lib/shorten-imports/index.js +2 -4
- package/lib/simplify-replace-template/index.js +5 -6
- package/package.json +7 -7
- package/lib/declare/types.json +0 -1179
|
@@ -0,0 +1,1179 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
AnyTypeAnnotation: 'const {AnyTypeAnnotation} = types',
|
|
3
|
+
ArgumentPlaceholder: 'const {ArgumentPlaceholder} = types',
|
|
4
|
+
ArrayExpression: 'const {ArrayExpression} = types',
|
|
5
|
+
ArrayPattern: 'const {ArrayPattern} = types',
|
|
6
|
+
ArrayTypeAnnotation: 'const {ArrayTypeAnnotation} = types',
|
|
7
|
+
ArrowFunctionExpression: 'const {ArrowFunctionExpression} = types',
|
|
8
|
+
AssignmentExpression: 'const {AssignmentExpression} = types',
|
|
9
|
+
AssignmentPattern: 'const {AssignmentPattern} = types',
|
|
10
|
+
AwaitExpression: 'const {AwaitExpression} = types',
|
|
11
|
+
BigIntLiteral: 'const {BigIntLiteral} = types',
|
|
12
|
+
BinaryExpression: 'const {BinaryExpression} = types',
|
|
13
|
+
BindExpression: 'const {BindExpression} = types',
|
|
14
|
+
BlockStatement: 'const {BlockStatement} = types',
|
|
15
|
+
BooleanLiteral: 'const {BooleanLiteral} = types',
|
|
16
|
+
BooleanLiteralTypeAnnotation: 'const {BooleanLiteralTypeAnnotation} = types',
|
|
17
|
+
BooleanTypeAnnotation: 'const {BooleanTypeAnnotation} = types',
|
|
18
|
+
BreakStatement: 'const {BreakStatement} = types',
|
|
19
|
+
CallExpression: 'const {CallExpression} = types',
|
|
20
|
+
CatchClause: 'const {CatchClause} = types',
|
|
21
|
+
ClassAccessorProperty: 'const {ClassAccessorProperty} = types',
|
|
22
|
+
ClassBody: 'const {ClassBody} = types',
|
|
23
|
+
ClassDeclaration: 'const {ClassDeclaration} = types',
|
|
24
|
+
ClassExpression: 'const {ClassExpression} = types',
|
|
25
|
+
ClassImplements: 'const {ClassImplements} = types',
|
|
26
|
+
ClassMethod: 'const {ClassMethod} = types',
|
|
27
|
+
ClassPrivateMethod: 'const {ClassPrivateMethod} = types',
|
|
28
|
+
ClassPrivateProperty: 'const {ClassPrivateProperty} = types',
|
|
29
|
+
ClassProperty: 'const {ClassProperty} = types',
|
|
30
|
+
ConditionalExpression: 'const {ConditionalExpression} = types',
|
|
31
|
+
ContinueStatement: 'const {ContinueStatement} = types',
|
|
32
|
+
DebuggerStatement: 'const {DebuggerStatement} = types',
|
|
33
|
+
DeclareClass: 'const {DeclareClass} = types',
|
|
34
|
+
DeclareExportAllDeclaration: 'const {DeclareExportAllDeclaration} = types',
|
|
35
|
+
DeclareExportDeclaration: 'const {DeclareExportDeclaration} = types',
|
|
36
|
+
DeclareFunction: 'const {DeclareFunction} = types',
|
|
37
|
+
DeclareInterface: 'const {DeclareInterface} = types',
|
|
38
|
+
DeclareModule: 'const {DeclareModule} = types',
|
|
39
|
+
DeclareModuleExports: 'const {DeclareModuleExports} = types',
|
|
40
|
+
DeclareOpaqueType: 'const {DeclareOpaqueType} = types',
|
|
41
|
+
DeclareTypeAlias: 'const {DeclareTypeAlias} = types',
|
|
42
|
+
DeclareVariable: 'const {DeclareVariable} = types',
|
|
43
|
+
DeclaredPredicate: 'const {DeclaredPredicate} = types',
|
|
44
|
+
Decorator: 'const {Decorator} = types',
|
|
45
|
+
Directive: 'const {Directive} = types',
|
|
46
|
+
DirectiveLiteral: 'const {DirectiveLiteral} = types',
|
|
47
|
+
DoExpression: 'const {DoExpression} = types',
|
|
48
|
+
DoWhileStatement: 'const {DoWhileStatement} = types',
|
|
49
|
+
EmptyStatement: 'const {EmptyStatement} = types',
|
|
50
|
+
EmptyTypeAnnotation: 'const {EmptyTypeAnnotation} = types',
|
|
51
|
+
EnumBooleanBody: 'const {EnumBooleanBody} = types',
|
|
52
|
+
EnumBooleanMember: 'const {EnumBooleanMember} = types',
|
|
53
|
+
EnumDeclaration: 'const {EnumDeclaration} = types',
|
|
54
|
+
EnumDefaultedMember: 'const {EnumDefaultedMember} = types',
|
|
55
|
+
EnumNumberBody: 'const {EnumNumberBody} = types',
|
|
56
|
+
EnumNumberMember: 'const {EnumNumberMember} = types',
|
|
57
|
+
EnumStringBody: 'const {EnumStringBody} = types',
|
|
58
|
+
EnumStringMember: 'const {EnumStringMember} = types',
|
|
59
|
+
EnumSymbolBody: 'const {EnumSymbolBody} = types',
|
|
60
|
+
ExistsTypeAnnotation: 'const {ExistsTypeAnnotation} = types',
|
|
61
|
+
ExportAllDeclaration: 'const {ExportAllDeclaration} = types',
|
|
62
|
+
ExportDefaultDeclaration: 'const {ExportDefaultDeclaration} = types',
|
|
63
|
+
ExportDefaultSpecifier: 'const {ExportDefaultSpecifier} = types',
|
|
64
|
+
ExportNamedDeclaration: 'const {ExportNamedDeclaration} = types',
|
|
65
|
+
ExportNamespaceSpecifier: 'const {ExportNamespaceSpecifier} = types',
|
|
66
|
+
ExportSpecifier: 'const {ExportSpecifier} = types',
|
|
67
|
+
ExpressionStatement: 'const {ExpressionStatement} = types',
|
|
68
|
+
File: 'const {File} = types',
|
|
69
|
+
ForInStatement: 'const {ForInStatement} = types',
|
|
70
|
+
ForOfStatement: 'const {ForOfStatement} = types',
|
|
71
|
+
ForStatement: 'const {ForStatement} = types',
|
|
72
|
+
FunctionDeclaration: 'const {FunctionDeclaration} = types',
|
|
73
|
+
FunctionExpression: 'const {FunctionExpression} = types',
|
|
74
|
+
FunctionTypeAnnotation: 'const {FunctionTypeAnnotation} = types',
|
|
75
|
+
FunctionTypeParam: 'const {FunctionTypeParam} = types',
|
|
76
|
+
GenericTypeAnnotation: 'const {GenericTypeAnnotation} = types',
|
|
77
|
+
Identifier: 'const {Identifier} = types',
|
|
78
|
+
IfStatement: 'const {IfStatement} = types',
|
|
79
|
+
Import: 'const {Import} = types',
|
|
80
|
+
ImportAttribute: 'const {ImportAttribute} = types',
|
|
81
|
+
ImportDeclaration: 'const {ImportDeclaration} = types',
|
|
82
|
+
ImportDefaultSpecifier: 'const {ImportDefaultSpecifier} = types',
|
|
83
|
+
ImportExpression: 'const {ImportExpression} = types',
|
|
84
|
+
ImportNamespaceSpecifier: 'const {ImportNamespaceSpecifier} = types',
|
|
85
|
+
ImportSpecifier: 'const {ImportSpecifier} = types',
|
|
86
|
+
IndexedAccessType: 'const {IndexedAccessType} = types',
|
|
87
|
+
InferredPredicate: 'const {InferredPredicate} = types',
|
|
88
|
+
InterfaceDeclaration: 'const {InterfaceDeclaration} = types',
|
|
89
|
+
InterfaceExtends: 'const {InterfaceExtends} = types',
|
|
90
|
+
InterfaceTypeAnnotation: 'const {InterfaceTypeAnnotation} = types',
|
|
91
|
+
InterpreterDirective: 'const {InterpreterDirective} = types',
|
|
92
|
+
IntersectionTypeAnnotation: 'const {IntersectionTypeAnnotation} = types',
|
|
93
|
+
JSXAttribute: 'const {JSXAttribute} = types',
|
|
94
|
+
JSXClosingElement: 'const {JSXClosingElement} = types',
|
|
95
|
+
JSXClosingFragment: 'const {JSXClosingFragment} = types',
|
|
96
|
+
JSXElement: 'const {JSXElement} = types',
|
|
97
|
+
JSXEmptyExpression: 'const {JSXEmptyExpression} = types',
|
|
98
|
+
JSXExpressionContainer: 'const {JSXExpressionContainer} = types',
|
|
99
|
+
JSXFragment: 'const {JSXFragment} = types',
|
|
100
|
+
JSXIdentifier: 'const {JSXIdentifier} = types',
|
|
101
|
+
JSXMemberExpression: 'const {JSXMemberExpression} = types',
|
|
102
|
+
JSXNamespacedName: 'const {JSXNamespacedName} = types',
|
|
103
|
+
JSXOpeningElement: 'const {JSXOpeningElement} = types',
|
|
104
|
+
JSXOpeningFragment: 'const {JSXOpeningFragment} = types',
|
|
105
|
+
JSXSpreadAttribute: 'const {JSXSpreadAttribute} = types',
|
|
106
|
+
JSXSpreadChild: 'const {JSXSpreadChild} = types',
|
|
107
|
+
JSXText: 'const {JSXText} = types',
|
|
108
|
+
LabeledStatement: 'const {LabeledStatement} = types',
|
|
109
|
+
LogicalExpression: 'const {LogicalExpression} = types',
|
|
110
|
+
MemberExpression: 'const {MemberExpression} = types',
|
|
111
|
+
MetaProperty: 'const {MetaProperty} = types',
|
|
112
|
+
MixedTypeAnnotation: 'const {MixedTypeAnnotation} = types',
|
|
113
|
+
ModuleExpression: 'const {ModuleExpression} = types',
|
|
114
|
+
NewExpression: 'const {NewExpression} = types',
|
|
115
|
+
NullLiteral: 'const {NullLiteral} = types',
|
|
116
|
+
NullLiteralTypeAnnotation: 'const {NullLiteralTypeAnnotation} = types',
|
|
117
|
+
NullableTypeAnnotation: 'const {NullableTypeAnnotation} = types',
|
|
118
|
+
NumberLiteral: 'const {NumberLiteral} = types',
|
|
119
|
+
NumberLiteralTypeAnnotation: 'const {NumberLiteralTypeAnnotation} = types',
|
|
120
|
+
NumberTypeAnnotation: 'const {NumberTypeAnnotation} = types',
|
|
121
|
+
NumericLiteral: 'const {NumericLiteral} = types',
|
|
122
|
+
ObjectExpression: 'const {ObjectExpression} = types',
|
|
123
|
+
ObjectMethod: 'const {ObjectMethod} = types',
|
|
124
|
+
ObjectPattern: 'const {ObjectPattern} = types',
|
|
125
|
+
ObjectProperty: 'const {ObjectProperty} = types',
|
|
126
|
+
ObjectTypeAnnotation: 'const {ObjectTypeAnnotation} = types',
|
|
127
|
+
ObjectTypeCallProperty: 'const {ObjectTypeCallProperty} = types',
|
|
128
|
+
ObjectTypeIndexer: 'const {ObjectTypeIndexer} = types',
|
|
129
|
+
ObjectTypeInternalSlot: 'const {ObjectTypeInternalSlot} = types',
|
|
130
|
+
ObjectTypeProperty: 'const {ObjectTypeProperty} = types',
|
|
131
|
+
ObjectTypeSpreadProperty: 'const {ObjectTypeSpreadProperty} = types',
|
|
132
|
+
OpaqueType: 'const {OpaqueType} = types',
|
|
133
|
+
OptionalCallExpression: 'const {OptionalCallExpression} = types',
|
|
134
|
+
OptionalIndexedAccessType: 'const {OptionalIndexedAccessType} = types',
|
|
135
|
+
OptionalMemberExpression: 'const {OptionalMemberExpression} = types',
|
|
136
|
+
ParenthesizedExpression: 'const {ParenthesizedExpression} = types',
|
|
137
|
+
PipelineBareFunction: 'const {PipelineBareFunction} = types',
|
|
138
|
+
PipelinePrimaryTopicReference: 'const {PipelinePrimaryTopicReference} = types',
|
|
139
|
+
PipelineTopicExpression: 'const {PipelineTopicExpression} = types',
|
|
140
|
+
Placeholder: 'const {Placeholder} = types',
|
|
141
|
+
PrivateName: 'const {PrivateName} = types',
|
|
142
|
+
Program: 'const {Program} = types',
|
|
143
|
+
QualifiedTypeIdentifier: 'const {QualifiedTypeIdentifier} = types',
|
|
144
|
+
RecordExpression: 'const {RecordExpression} = types',
|
|
145
|
+
RegExpLiteral: 'const {RegExpLiteral} = types',
|
|
146
|
+
RegexLiteral: 'const {RegexLiteral} = types',
|
|
147
|
+
RestElement: 'const {RestElement} = types',
|
|
148
|
+
RestProperty: 'const {RestProperty} = types',
|
|
149
|
+
ReturnStatement: 'const {ReturnStatement} = types',
|
|
150
|
+
SequenceExpression: 'const {SequenceExpression} = types',
|
|
151
|
+
SpreadElement: 'const {SpreadElement} = types',
|
|
152
|
+
SpreadProperty: 'const {SpreadProperty} = types',
|
|
153
|
+
StaticBlock: 'const {StaticBlock} = types',
|
|
154
|
+
StringLiteral: 'const {StringLiteral} = types',
|
|
155
|
+
StringLiteralTypeAnnotation: 'const {StringLiteralTypeAnnotation} = types',
|
|
156
|
+
StringTypeAnnotation: 'const {StringTypeAnnotation} = types',
|
|
157
|
+
Super: 'const {Super} = types',
|
|
158
|
+
SwitchCase: 'const {SwitchCase} = types',
|
|
159
|
+
SwitchStatement: 'const {SwitchStatement} = types',
|
|
160
|
+
SymbolTypeAnnotation: 'const {SymbolTypeAnnotation} = types',
|
|
161
|
+
TSAnyKeyword: 'const {TSAnyKeyword} = types',
|
|
162
|
+
TSArrayType: 'const {TSArrayType} = types',
|
|
163
|
+
TSAsExpression: 'const {TSAsExpression} = types',
|
|
164
|
+
TSBigIntKeyword: 'const {TSBigIntKeyword} = types',
|
|
165
|
+
TSBooleanKeyword: 'const {TSBooleanKeyword} = types',
|
|
166
|
+
TSCallSignatureDeclaration: 'const {TSCallSignatureDeclaration} = types',
|
|
167
|
+
TSClassImplements: 'const {TSClassImplements} = types',
|
|
168
|
+
TSConditionalType: 'const {TSConditionalType} = types',
|
|
169
|
+
TSConstructSignatureDeclaration: 'const {TSConstructSignatureDeclaration} = types',
|
|
170
|
+
TSConstructorType: 'const {TSConstructorType} = types',
|
|
171
|
+
TSDeclareFunction: 'const {TSDeclareFunction} = types',
|
|
172
|
+
TSDeclareMethod: 'const {TSDeclareMethod} = types',
|
|
173
|
+
TSEnumBody: 'const {TSEnumBody} = types',
|
|
174
|
+
TSEnumDeclaration: 'const {TSEnumDeclaration} = types',
|
|
175
|
+
TSEnumMember: 'const {TSEnumMember} = types',
|
|
176
|
+
TSExportAssignment: 'const {TSExportAssignment} = types',
|
|
177
|
+
TSExternalModuleReference: 'const {TSExternalModuleReference} = types',
|
|
178
|
+
TSFunctionType: 'const {TSFunctionType} = types',
|
|
179
|
+
TSImportEqualsDeclaration: 'const {TSImportEqualsDeclaration} = types',
|
|
180
|
+
TSImportType: 'const {TSImportType} = types',
|
|
181
|
+
TSIndexSignature: 'const {TSIndexSignature} = types',
|
|
182
|
+
TSIndexedAccessType: 'const {TSIndexedAccessType} = types',
|
|
183
|
+
TSInferType: 'const {TSInferType} = types',
|
|
184
|
+
TSInstantiationExpression: 'const {TSInstantiationExpression} = types',
|
|
185
|
+
TSInterfaceBody: 'const {TSInterfaceBody} = types',
|
|
186
|
+
TSInterfaceDeclaration: 'const {TSInterfaceDeclaration} = types',
|
|
187
|
+
TSInterfaceHeritage: 'const {TSInterfaceHeritage} = types',
|
|
188
|
+
TSIntersectionType: 'const {TSIntersectionType} = types',
|
|
189
|
+
TSIntrinsicKeyword: 'const {TSIntrinsicKeyword} = types',
|
|
190
|
+
TSLiteralType: 'const {TSLiteralType} = types',
|
|
191
|
+
TSMappedType: 'const {TSMappedType} = types',
|
|
192
|
+
TSMethodSignature: 'const {TSMethodSignature} = types',
|
|
193
|
+
TSModuleBlock: 'const {TSModuleBlock} = types',
|
|
194
|
+
TSModuleDeclaration: 'const {TSModuleDeclaration} = types',
|
|
195
|
+
TSNamedTupleMember: 'const {TSNamedTupleMember} = types',
|
|
196
|
+
TSNamespaceExportDeclaration: 'const {TSNamespaceExportDeclaration} = types',
|
|
197
|
+
TSNeverKeyword: 'const {TSNeverKeyword} = types',
|
|
198
|
+
TSNonNullExpression: 'const {TSNonNullExpression} = types',
|
|
199
|
+
TSNullKeyword: 'const {TSNullKeyword} = types',
|
|
200
|
+
TSNumberKeyword: 'const {TSNumberKeyword} = types',
|
|
201
|
+
TSObjectKeyword: 'const {TSObjectKeyword} = types',
|
|
202
|
+
TSOptionalType: 'const {TSOptionalType} = types',
|
|
203
|
+
TSParameterProperty: 'const {TSParameterProperty} = types',
|
|
204
|
+
TSParenthesizedType: 'const {TSParenthesizedType} = types',
|
|
205
|
+
TSPropertySignature: 'const {TSPropertySignature} = types',
|
|
206
|
+
TSQualifiedName: 'const {TSQualifiedName} = types',
|
|
207
|
+
TSRestType: 'const {TSRestType} = types',
|
|
208
|
+
TSSatisfiesExpression: 'const {TSSatisfiesExpression} = types',
|
|
209
|
+
TSStringKeyword: 'const {TSStringKeyword} = types',
|
|
210
|
+
TSSymbolKeyword: 'const {TSSymbolKeyword} = types',
|
|
211
|
+
TSTemplateLiteralType: 'const {TSTemplateLiteralType} = types',
|
|
212
|
+
TSThisType: 'const {TSThisType} = types',
|
|
213
|
+
TSTupleType: 'const {TSTupleType} = types',
|
|
214
|
+
TSTypeAliasDeclaration: 'const {TSTypeAliasDeclaration} = types',
|
|
215
|
+
TSTypeAnnotation: 'const {TSTypeAnnotation} = types',
|
|
216
|
+
TSTypeAssertion: 'const {TSTypeAssertion} = types',
|
|
217
|
+
TSTypeLiteral: 'const {TSTypeLiteral} = types',
|
|
218
|
+
TSTypeOperator: 'const {TSTypeOperator} = types',
|
|
219
|
+
TSTypeParameter: 'const {TSTypeParameter} = types',
|
|
220
|
+
TSTypeParameterDeclaration: 'const {TSTypeParameterDeclaration} = types',
|
|
221
|
+
TSTypeParameterInstantiation: 'const {TSTypeParameterInstantiation} = types',
|
|
222
|
+
TSTypePredicate: 'const {TSTypePredicate} = types',
|
|
223
|
+
TSTypeQuery: 'const {TSTypeQuery} = types',
|
|
224
|
+
TSTypeReference: 'const {TSTypeReference} = types',
|
|
225
|
+
TSUndefinedKeyword: 'const {TSUndefinedKeyword} = types',
|
|
226
|
+
TSUnionType: 'const {TSUnionType} = types',
|
|
227
|
+
TSUnknownKeyword: 'const {TSUnknownKeyword} = types',
|
|
228
|
+
TSVoidKeyword: 'const {TSVoidKeyword} = types',
|
|
229
|
+
TaggedTemplateExpression: 'const {TaggedTemplateExpression} = types',
|
|
230
|
+
TemplateElement: 'const {TemplateElement} = types',
|
|
231
|
+
TemplateLiteral: 'const {TemplateLiteral} = types',
|
|
232
|
+
ThisExpression: 'const {ThisExpression} = types',
|
|
233
|
+
ThisTypeAnnotation: 'const {ThisTypeAnnotation} = types',
|
|
234
|
+
ThrowStatement: 'const {ThrowStatement} = types',
|
|
235
|
+
TopicReference: 'const {TopicReference} = types',
|
|
236
|
+
TryStatement: 'const {TryStatement} = types',
|
|
237
|
+
TupleExpression: 'const {TupleExpression} = types',
|
|
238
|
+
TupleTypeAnnotation: 'const {TupleTypeAnnotation} = types',
|
|
239
|
+
TypeAlias: 'const {TypeAlias} = types',
|
|
240
|
+
TypeAnnotation: 'const {TypeAnnotation} = types',
|
|
241
|
+
TypeCastExpression: 'const {TypeCastExpression} = types',
|
|
242
|
+
TypeParameter: 'const {TypeParameter} = types',
|
|
243
|
+
TypeParameterDeclaration: 'const {TypeParameterDeclaration} = types',
|
|
244
|
+
TypeParameterInstantiation: 'const {TypeParameterInstantiation} = types',
|
|
245
|
+
TypeofTypeAnnotation: 'const {TypeofTypeAnnotation} = types',
|
|
246
|
+
UnaryExpression: 'const {UnaryExpression} = types',
|
|
247
|
+
UnionTypeAnnotation: 'const {UnionTypeAnnotation} = types',
|
|
248
|
+
UpdateExpression: 'const {UpdateExpression} = types',
|
|
249
|
+
V8IntrinsicIdentifier: 'const {V8IntrinsicIdentifier} = types',
|
|
250
|
+
VariableDeclaration: 'const {VariableDeclaration} = types',
|
|
251
|
+
VariableDeclarator: 'const {VariableDeclarator} = types',
|
|
252
|
+
Variance: 'const {Variance} = types',
|
|
253
|
+
VoidTypeAnnotation: 'const {VoidTypeAnnotation} = types',
|
|
254
|
+
WhileStatement: 'const {WhileStatement} = types',
|
|
255
|
+
WithStatement: 'const {WithStatement} = types',
|
|
256
|
+
YieldExpression: 'const {YieldExpression} = types',
|
|
257
|
+
addComment: 'const {addComment} = types',
|
|
258
|
+
addComments: 'const {addComments} = types',
|
|
259
|
+
anyTypeAnnotation: 'const {anyTypeAnnotation} = types',
|
|
260
|
+
appendToMemberExpression: 'const {appendToMemberExpression} = types',
|
|
261
|
+
argumentPlaceholder: 'const {argumentPlaceholder} = types',
|
|
262
|
+
arrayExpression: 'const {arrayExpression} = types',
|
|
263
|
+
arrayPattern: 'const {arrayPattern} = types',
|
|
264
|
+
arrayTypeAnnotation: 'const {arrayTypeAnnotation} = types',
|
|
265
|
+
arrowFunctionExpression: 'const {arrowFunctionExpression} = types',
|
|
266
|
+
assertAccessor: 'const {assertAccessor} = types',
|
|
267
|
+
assertAnyTypeAnnotation: 'const {assertAnyTypeAnnotation} = types',
|
|
268
|
+
assertArgumentPlaceholder: 'const {assertArgumentPlaceholder} = types',
|
|
269
|
+
assertArrayExpression: 'const {assertArrayExpression} = types',
|
|
270
|
+
assertArrayPattern: 'const {assertArrayPattern} = types',
|
|
271
|
+
assertArrayTypeAnnotation: 'const {assertArrayTypeAnnotation} = types',
|
|
272
|
+
assertArrowFunctionExpression: 'const {assertArrowFunctionExpression} = types',
|
|
273
|
+
assertAssignmentExpression: 'const {assertAssignmentExpression} = types',
|
|
274
|
+
assertAssignmentPattern: 'const {assertAssignmentPattern} = types',
|
|
275
|
+
assertAwaitExpression: 'const {assertAwaitExpression} = types',
|
|
276
|
+
assertBigIntLiteral: 'const {assertBigIntLiteral} = types',
|
|
277
|
+
assertBinary: 'const {assertBinary} = types',
|
|
278
|
+
assertBinaryExpression: 'const {assertBinaryExpression} = types',
|
|
279
|
+
assertBindExpression: 'const {assertBindExpression} = types',
|
|
280
|
+
assertBlock: 'const {assertBlock} = types',
|
|
281
|
+
assertBlockParent: 'const {assertBlockParent} = types',
|
|
282
|
+
assertBlockStatement: 'const {assertBlockStatement} = types',
|
|
283
|
+
assertBooleanLiteral: 'const {assertBooleanLiteral} = types',
|
|
284
|
+
assertBooleanLiteralTypeAnnotation: 'const {assertBooleanLiteralTypeAnnotation} = types',
|
|
285
|
+
assertBooleanTypeAnnotation: 'const {assertBooleanTypeAnnotation} = types',
|
|
286
|
+
assertBreakStatement: 'const {assertBreakStatement} = types',
|
|
287
|
+
assertCallExpression: 'const {assertCallExpression} = types',
|
|
288
|
+
assertCatchClause: 'const {assertCatchClause} = types',
|
|
289
|
+
assertClass: 'const {assertClass} = types',
|
|
290
|
+
assertClassAccessorProperty: 'const {assertClassAccessorProperty} = types',
|
|
291
|
+
assertClassBody: 'const {assertClassBody} = types',
|
|
292
|
+
assertClassDeclaration: 'const {assertClassDeclaration} = types',
|
|
293
|
+
assertClassExpression: 'const {assertClassExpression} = types',
|
|
294
|
+
assertClassImplements: 'const {assertClassImplements} = types',
|
|
295
|
+
assertClassMethod: 'const {assertClassMethod} = types',
|
|
296
|
+
assertClassPrivateMethod: 'const {assertClassPrivateMethod} = types',
|
|
297
|
+
assertClassPrivateProperty: 'const {assertClassPrivateProperty} = types',
|
|
298
|
+
assertClassProperty: 'const {assertClassProperty} = types',
|
|
299
|
+
assertCompletionStatement: 'const {assertCompletionStatement} = types',
|
|
300
|
+
assertConditional: 'const {assertConditional} = types',
|
|
301
|
+
assertConditionalExpression: 'const {assertConditionalExpression} = types',
|
|
302
|
+
assertContinueStatement: 'const {assertContinueStatement} = types',
|
|
303
|
+
assertDebuggerStatement: 'const {assertDebuggerStatement} = types',
|
|
304
|
+
assertDeclaration: 'const {assertDeclaration} = types',
|
|
305
|
+
assertDeclareClass: 'const {assertDeclareClass} = types',
|
|
306
|
+
assertDeclareExportAllDeclaration: 'const {assertDeclareExportAllDeclaration} = types',
|
|
307
|
+
assertDeclareExportDeclaration: 'const {assertDeclareExportDeclaration} = types',
|
|
308
|
+
assertDeclareFunction: 'const {assertDeclareFunction} = types',
|
|
309
|
+
assertDeclareInterface: 'const {assertDeclareInterface} = types',
|
|
310
|
+
assertDeclareModule: 'const {assertDeclareModule} = types',
|
|
311
|
+
assertDeclareModuleExports: 'const {assertDeclareModuleExports} = types',
|
|
312
|
+
assertDeclareOpaqueType: 'const {assertDeclareOpaqueType} = types',
|
|
313
|
+
assertDeclareTypeAlias: 'const {assertDeclareTypeAlias} = types',
|
|
314
|
+
assertDeclareVariable: 'const {assertDeclareVariable} = types',
|
|
315
|
+
assertDeclaredPredicate: 'const {assertDeclaredPredicate} = types',
|
|
316
|
+
assertDecorator: 'const {assertDecorator} = types',
|
|
317
|
+
assertDirective: 'const {assertDirective} = types',
|
|
318
|
+
assertDirectiveLiteral: 'const {assertDirectiveLiteral} = types',
|
|
319
|
+
assertDoExpression: 'const {assertDoExpression} = types',
|
|
320
|
+
assertDoWhileStatement: 'const {assertDoWhileStatement} = types',
|
|
321
|
+
assertEmptyStatement: 'const {assertEmptyStatement} = types',
|
|
322
|
+
assertEmptyTypeAnnotation: 'const {assertEmptyTypeAnnotation} = types',
|
|
323
|
+
assertEnumBody: 'const {assertEnumBody} = types',
|
|
324
|
+
assertEnumBooleanBody: 'const {assertEnumBooleanBody} = types',
|
|
325
|
+
assertEnumBooleanMember: 'const {assertEnumBooleanMember} = types',
|
|
326
|
+
assertEnumDeclaration: 'const {assertEnumDeclaration} = types',
|
|
327
|
+
assertEnumDefaultedMember: 'const {assertEnumDefaultedMember} = types',
|
|
328
|
+
assertEnumMember: 'const {assertEnumMember} = types',
|
|
329
|
+
assertEnumNumberBody: 'const {assertEnumNumberBody} = types',
|
|
330
|
+
assertEnumNumberMember: 'const {assertEnumNumberMember} = types',
|
|
331
|
+
assertEnumStringBody: 'const {assertEnumStringBody} = types',
|
|
332
|
+
assertEnumStringMember: 'const {assertEnumStringMember} = types',
|
|
333
|
+
assertEnumSymbolBody: 'const {assertEnumSymbolBody} = types',
|
|
334
|
+
assertExistsTypeAnnotation: 'const {assertExistsTypeAnnotation} = types',
|
|
335
|
+
assertExportAllDeclaration: 'const {assertExportAllDeclaration} = types',
|
|
336
|
+
assertExportDeclaration: 'const {assertExportDeclaration} = types',
|
|
337
|
+
assertExportDefaultDeclaration: 'const {assertExportDefaultDeclaration} = types',
|
|
338
|
+
assertExportDefaultSpecifier: 'const {assertExportDefaultSpecifier} = types',
|
|
339
|
+
assertExportNamedDeclaration: 'const {assertExportNamedDeclaration} = types',
|
|
340
|
+
assertExportNamespaceSpecifier: 'const {assertExportNamespaceSpecifier} = types',
|
|
341
|
+
assertExportSpecifier: 'const {assertExportSpecifier} = types',
|
|
342
|
+
assertExpression: 'const {assertExpression} = types',
|
|
343
|
+
assertExpressionStatement: 'const {assertExpressionStatement} = types',
|
|
344
|
+
assertExpressionWrapper: 'const {assertExpressionWrapper} = types',
|
|
345
|
+
assertFile: 'const {assertFile} = types',
|
|
346
|
+
assertFlow: 'const {assertFlow} = types',
|
|
347
|
+
assertFlowBaseAnnotation: 'const {assertFlowBaseAnnotation} = types',
|
|
348
|
+
assertFlowDeclaration: 'const {assertFlowDeclaration} = types',
|
|
349
|
+
assertFlowPredicate: 'const {assertFlowPredicate} = types',
|
|
350
|
+
assertFlowType: 'const {assertFlowType} = types',
|
|
351
|
+
assertFor: 'const {assertFor} = types',
|
|
352
|
+
assertForInStatement: 'const {assertForInStatement} = types',
|
|
353
|
+
assertForOfStatement: 'const {assertForOfStatement} = types',
|
|
354
|
+
assertForStatement: 'const {assertForStatement} = types',
|
|
355
|
+
assertForXStatement: 'const {assertForXStatement} = types',
|
|
356
|
+
assertFunction: 'const {assertFunction} = types',
|
|
357
|
+
assertFunctionDeclaration: 'const {assertFunctionDeclaration} = types',
|
|
358
|
+
assertFunctionExpression: 'const {assertFunctionExpression} = types',
|
|
359
|
+
assertFunctionParent: 'const {assertFunctionParent} = types',
|
|
360
|
+
assertFunctionTypeAnnotation: 'const {assertFunctionTypeAnnotation} = types',
|
|
361
|
+
assertFunctionTypeParam: 'const {assertFunctionTypeParam} = types',
|
|
362
|
+
assertGenericTypeAnnotation: 'const {assertGenericTypeAnnotation} = types',
|
|
363
|
+
assertIdentifier: 'const {assertIdentifier} = types',
|
|
364
|
+
assertIfStatement: 'const {assertIfStatement} = types',
|
|
365
|
+
assertImmutable: 'const {assertImmutable} = types',
|
|
366
|
+
assertImport: 'const {assertImport} = types',
|
|
367
|
+
assertImportAttribute: 'const {assertImportAttribute} = types',
|
|
368
|
+
assertImportDeclaration: 'const {assertImportDeclaration} = types',
|
|
369
|
+
assertImportDefaultSpecifier: 'const {assertImportDefaultSpecifier} = types',
|
|
370
|
+
assertImportExpression: 'const {assertImportExpression} = types',
|
|
371
|
+
assertImportNamespaceSpecifier: 'const {assertImportNamespaceSpecifier} = types',
|
|
372
|
+
assertImportOrExportDeclaration: 'const {assertImportOrExportDeclaration} = types',
|
|
373
|
+
assertImportSpecifier: 'const {assertImportSpecifier} = types',
|
|
374
|
+
assertIndexedAccessType: 'const {assertIndexedAccessType} = types',
|
|
375
|
+
assertInferredPredicate: 'const {assertInferredPredicate} = types',
|
|
376
|
+
assertInterfaceDeclaration: 'const {assertInterfaceDeclaration} = types',
|
|
377
|
+
assertInterfaceExtends: 'const {assertInterfaceExtends} = types',
|
|
378
|
+
assertInterfaceTypeAnnotation: 'const {assertInterfaceTypeAnnotation} = types',
|
|
379
|
+
assertInterpreterDirective: 'const {assertInterpreterDirective} = types',
|
|
380
|
+
assertIntersectionTypeAnnotation: 'const {assertIntersectionTypeAnnotation} = types',
|
|
381
|
+
assertJSX: 'const {assertJSX} = types',
|
|
382
|
+
assertJSXAttribute: 'const {assertJSXAttribute} = types',
|
|
383
|
+
assertJSXClosingElement: 'const {assertJSXClosingElement} = types',
|
|
384
|
+
assertJSXClosingFragment: 'const {assertJSXClosingFragment} = types',
|
|
385
|
+
assertJSXElement: 'const {assertJSXElement} = types',
|
|
386
|
+
assertJSXEmptyExpression: 'const {assertJSXEmptyExpression} = types',
|
|
387
|
+
assertJSXExpressionContainer: 'const {assertJSXExpressionContainer} = types',
|
|
388
|
+
assertJSXFragment: 'const {assertJSXFragment} = types',
|
|
389
|
+
assertJSXIdentifier: 'const {assertJSXIdentifier} = types',
|
|
390
|
+
assertJSXMemberExpression: 'const {assertJSXMemberExpression} = types',
|
|
391
|
+
assertJSXNamespacedName: 'const {assertJSXNamespacedName} = types',
|
|
392
|
+
assertJSXOpeningElement: 'const {assertJSXOpeningElement} = types',
|
|
393
|
+
assertJSXOpeningFragment: 'const {assertJSXOpeningFragment} = types',
|
|
394
|
+
assertJSXSpreadAttribute: 'const {assertJSXSpreadAttribute} = types',
|
|
395
|
+
assertJSXSpreadChild: 'const {assertJSXSpreadChild} = types',
|
|
396
|
+
assertJSXText: 'const {assertJSXText} = types',
|
|
397
|
+
assertLVal: 'const {assertLVal} = types',
|
|
398
|
+
assertLabeledStatement: 'const {assertLabeledStatement} = types',
|
|
399
|
+
assertLiteral: 'const {assertLiteral} = types',
|
|
400
|
+
assertLogicalExpression: 'const {assertLogicalExpression} = types',
|
|
401
|
+
assertLoop: 'const {assertLoop} = types',
|
|
402
|
+
assertMemberExpression: 'const {assertMemberExpression} = types',
|
|
403
|
+
assertMetaProperty: 'const {assertMetaProperty} = types',
|
|
404
|
+
assertMethod: 'const {assertMethod} = types',
|
|
405
|
+
assertMiscellaneous: 'const {assertMiscellaneous} = types',
|
|
406
|
+
assertMixedTypeAnnotation: 'const {assertMixedTypeAnnotation} = types',
|
|
407
|
+
assertModuleDeclaration: 'const {assertModuleDeclaration} = types',
|
|
408
|
+
assertModuleExpression: 'const {assertModuleExpression} = types',
|
|
409
|
+
assertModuleSpecifier: 'const {assertModuleSpecifier} = types',
|
|
410
|
+
assertNewExpression: 'const {assertNewExpression} = types',
|
|
411
|
+
assertNode: 'const {assertNode} = types',
|
|
412
|
+
assertNullLiteral: 'const {assertNullLiteral} = types',
|
|
413
|
+
assertNullLiteralTypeAnnotation: 'const {assertNullLiteralTypeAnnotation} = types',
|
|
414
|
+
assertNullableTypeAnnotation: 'const {assertNullableTypeAnnotation} = types',
|
|
415
|
+
assertNumberLiteral: 'const {assertNumberLiteral} = types',
|
|
416
|
+
assertNumberLiteralTypeAnnotation: 'const {assertNumberLiteralTypeAnnotation} = types',
|
|
417
|
+
assertNumberTypeAnnotation: 'const {assertNumberTypeAnnotation} = types',
|
|
418
|
+
assertNumericLiteral: 'const {assertNumericLiteral} = types',
|
|
419
|
+
assertObjectExpression: 'const {assertObjectExpression} = types',
|
|
420
|
+
assertObjectMember: 'const {assertObjectMember} = types',
|
|
421
|
+
assertObjectMethod: 'const {assertObjectMethod} = types',
|
|
422
|
+
assertObjectPattern: 'const {assertObjectPattern} = types',
|
|
423
|
+
assertObjectProperty: 'const {assertObjectProperty} = types',
|
|
424
|
+
assertObjectTypeAnnotation: 'const {assertObjectTypeAnnotation} = types',
|
|
425
|
+
assertObjectTypeCallProperty: 'const {assertObjectTypeCallProperty} = types',
|
|
426
|
+
assertObjectTypeIndexer: 'const {assertObjectTypeIndexer} = types',
|
|
427
|
+
assertObjectTypeInternalSlot: 'const {assertObjectTypeInternalSlot} = types',
|
|
428
|
+
assertObjectTypeProperty: 'const {assertObjectTypeProperty} = types',
|
|
429
|
+
assertObjectTypeSpreadProperty: 'const {assertObjectTypeSpreadProperty} = types',
|
|
430
|
+
assertOpaqueType: 'const {assertOpaqueType} = types',
|
|
431
|
+
assertOptionalCallExpression: 'const {assertOptionalCallExpression} = types',
|
|
432
|
+
assertOptionalIndexedAccessType: 'const {assertOptionalIndexedAccessType} = types',
|
|
433
|
+
assertOptionalMemberExpression: 'const {assertOptionalMemberExpression} = types',
|
|
434
|
+
assertParenthesizedExpression: 'const {assertParenthesizedExpression} = types',
|
|
435
|
+
assertPattern: 'const {assertPattern} = types',
|
|
436
|
+
assertPatternLike: 'const {assertPatternLike} = types',
|
|
437
|
+
assertPipelineBareFunction: 'const {assertPipelineBareFunction} = types',
|
|
438
|
+
assertPipelinePrimaryTopicReference: 'const {assertPipelinePrimaryTopicReference} = types',
|
|
439
|
+
assertPipelineTopicExpression: 'const {assertPipelineTopicExpression} = types',
|
|
440
|
+
assertPlaceholder: 'const {assertPlaceholder} = types',
|
|
441
|
+
assertPrivate: 'const {assertPrivate} = types',
|
|
442
|
+
assertPrivateName: 'const {assertPrivateName} = types',
|
|
443
|
+
assertProgram: 'const {assertProgram} = types',
|
|
444
|
+
assertProperty: 'const {assertProperty} = types',
|
|
445
|
+
assertPureish: 'const {assertPureish} = types',
|
|
446
|
+
assertQualifiedTypeIdentifier: 'const {assertQualifiedTypeIdentifier} = types',
|
|
447
|
+
assertRecordExpression: 'const {assertRecordExpression} = types',
|
|
448
|
+
assertRegExpLiteral: 'const {assertRegExpLiteral} = types',
|
|
449
|
+
assertRegexLiteral: 'const {assertRegexLiteral} = types',
|
|
450
|
+
assertRestElement: 'const {assertRestElement} = types',
|
|
451
|
+
assertRestProperty: 'const {assertRestProperty} = types',
|
|
452
|
+
assertReturnStatement: 'const {assertReturnStatement} = types',
|
|
453
|
+
assertScopable: 'const {assertScopable} = types',
|
|
454
|
+
assertSequenceExpression: 'const {assertSequenceExpression} = types',
|
|
455
|
+
assertSpreadElement: 'const {assertSpreadElement} = types',
|
|
456
|
+
assertSpreadProperty: 'const {assertSpreadProperty} = types',
|
|
457
|
+
assertStandardized: 'const {assertStandardized} = types',
|
|
458
|
+
assertStatement: 'const {assertStatement} = types',
|
|
459
|
+
assertStaticBlock: 'const {assertStaticBlock} = types',
|
|
460
|
+
assertStringLiteral: 'const {assertStringLiteral} = types',
|
|
461
|
+
assertStringLiteralTypeAnnotation: 'const {assertStringLiteralTypeAnnotation} = types',
|
|
462
|
+
assertStringTypeAnnotation: 'const {assertStringTypeAnnotation} = types',
|
|
463
|
+
assertSuper: 'const {assertSuper} = types',
|
|
464
|
+
assertSwitchCase: 'const {assertSwitchCase} = types',
|
|
465
|
+
assertSwitchStatement: 'const {assertSwitchStatement} = types',
|
|
466
|
+
assertSymbolTypeAnnotation: 'const {assertSymbolTypeAnnotation} = types',
|
|
467
|
+
assertTSAnyKeyword: 'const {assertTSAnyKeyword} = types',
|
|
468
|
+
assertTSArrayType: 'const {assertTSArrayType} = types',
|
|
469
|
+
assertTSAsExpression: 'const {assertTSAsExpression} = types',
|
|
470
|
+
assertTSBaseType: 'const {assertTSBaseType} = types',
|
|
471
|
+
assertTSBigIntKeyword: 'const {assertTSBigIntKeyword} = types',
|
|
472
|
+
assertTSBooleanKeyword: 'const {assertTSBooleanKeyword} = types',
|
|
473
|
+
assertTSCallSignatureDeclaration: 'const {assertTSCallSignatureDeclaration} = types',
|
|
474
|
+
assertTSClassImplements: 'const {assertTSClassImplements} = types',
|
|
475
|
+
assertTSConditionalType: 'const {assertTSConditionalType} = types',
|
|
476
|
+
assertTSConstructSignatureDeclaration: 'const {assertTSConstructSignatureDeclaration} = types',
|
|
477
|
+
assertTSConstructorType: 'const {assertTSConstructorType} = types',
|
|
478
|
+
assertTSDeclareFunction: 'const {assertTSDeclareFunction} = types',
|
|
479
|
+
assertTSDeclareMethod: 'const {assertTSDeclareMethod} = types',
|
|
480
|
+
assertTSEntityName: 'const {assertTSEntityName} = types',
|
|
481
|
+
assertTSEnumBody: 'const {assertTSEnumBody} = types',
|
|
482
|
+
assertTSEnumDeclaration: 'const {assertTSEnumDeclaration} = types',
|
|
483
|
+
assertTSEnumMember: 'const {assertTSEnumMember} = types',
|
|
484
|
+
assertTSExportAssignment: 'const {assertTSExportAssignment} = types',
|
|
485
|
+
assertTSExternalModuleReference: 'const {assertTSExternalModuleReference} = types',
|
|
486
|
+
assertTSFunctionType: 'const {assertTSFunctionType} = types',
|
|
487
|
+
assertTSImportEqualsDeclaration: 'const {assertTSImportEqualsDeclaration} = types',
|
|
488
|
+
assertTSImportType: 'const {assertTSImportType} = types',
|
|
489
|
+
assertTSIndexSignature: 'const {assertTSIndexSignature} = types',
|
|
490
|
+
assertTSIndexedAccessType: 'const {assertTSIndexedAccessType} = types',
|
|
491
|
+
assertTSInferType: 'const {assertTSInferType} = types',
|
|
492
|
+
assertTSInstantiationExpression: 'const {assertTSInstantiationExpression} = types',
|
|
493
|
+
assertTSInterfaceBody: 'const {assertTSInterfaceBody} = types',
|
|
494
|
+
assertTSInterfaceDeclaration: 'const {assertTSInterfaceDeclaration} = types',
|
|
495
|
+
assertTSInterfaceHeritage: 'const {assertTSInterfaceHeritage} = types',
|
|
496
|
+
assertTSIntersectionType: 'const {assertTSIntersectionType} = types',
|
|
497
|
+
assertTSIntrinsicKeyword: 'const {assertTSIntrinsicKeyword} = types',
|
|
498
|
+
assertTSLiteralType: 'const {assertTSLiteralType} = types',
|
|
499
|
+
assertTSMappedType: 'const {assertTSMappedType} = types',
|
|
500
|
+
assertTSMethodSignature: 'const {assertTSMethodSignature} = types',
|
|
501
|
+
assertTSModuleBlock: 'const {assertTSModuleBlock} = types',
|
|
502
|
+
assertTSModuleDeclaration: 'const {assertTSModuleDeclaration} = types',
|
|
503
|
+
assertTSNamedTupleMember: 'const {assertTSNamedTupleMember} = types',
|
|
504
|
+
assertTSNamespaceExportDeclaration: 'const {assertTSNamespaceExportDeclaration} = types',
|
|
505
|
+
assertTSNeverKeyword: 'const {assertTSNeverKeyword} = types',
|
|
506
|
+
assertTSNonNullExpression: 'const {assertTSNonNullExpression} = types',
|
|
507
|
+
assertTSNullKeyword: 'const {assertTSNullKeyword} = types',
|
|
508
|
+
assertTSNumberKeyword: 'const {assertTSNumberKeyword} = types',
|
|
509
|
+
assertTSObjectKeyword: 'const {assertTSObjectKeyword} = types',
|
|
510
|
+
assertTSOptionalType: 'const {assertTSOptionalType} = types',
|
|
511
|
+
assertTSParameterProperty: 'const {assertTSParameterProperty} = types',
|
|
512
|
+
assertTSParenthesizedType: 'const {assertTSParenthesizedType} = types',
|
|
513
|
+
assertTSPropertySignature: 'const {assertTSPropertySignature} = types',
|
|
514
|
+
assertTSQualifiedName: 'const {assertTSQualifiedName} = types',
|
|
515
|
+
assertTSRestType: 'const {assertTSRestType} = types',
|
|
516
|
+
assertTSSatisfiesExpression: 'const {assertTSSatisfiesExpression} = types',
|
|
517
|
+
assertTSStringKeyword: 'const {assertTSStringKeyword} = types',
|
|
518
|
+
assertTSSymbolKeyword: 'const {assertTSSymbolKeyword} = types',
|
|
519
|
+
assertTSTemplateLiteralType: 'const {assertTSTemplateLiteralType} = types',
|
|
520
|
+
assertTSThisType: 'const {assertTSThisType} = types',
|
|
521
|
+
assertTSTupleType: 'const {assertTSTupleType} = types',
|
|
522
|
+
assertTSType: 'const {assertTSType} = types',
|
|
523
|
+
assertTSTypeAliasDeclaration: 'const {assertTSTypeAliasDeclaration} = types',
|
|
524
|
+
assertTSTypeAnnotation: 'const {assertTSTypeAnnotation} = types',
|
|
525
|
+
assertTSTypeAssertion: 'const {assertTSTypeAssertion} = types',
|
|
526
|
+
assertTSTypeElement: 'const {assertTSTypeElement} = types',
|
|
527
|
+
assertTSTypeLiteral: 'const {assertTSTypeLiteral} = types',
|
|
528
|
+
assertTSTypeOperator: 'const {assertTSTypeOperator} = types',
|
|
529
|
+
assertTSTypeParameter: 'const {assertTSTypeParameter} = types',
|
|
530
|
+
assertTSTypeParameterDeclaration: 'const {assertTSTypeParameterDeclaration} = types',
|
|
531
|
+
assertTSTypeParameterInstantiation: 'const {assertTSTypeParameterInstantiation} = types',
|
|
532
|
+
assertTSTypePredicate: 'const {assertTSTypePredicate} = types',
|
|
533
|
+
assertTSTypeQuery: 'const {assertTSTypeQuery} = types',
|
|
534
|
+
assertTSTypeReference: 'const {assertTSTypeReference} = types',
|
|
535
|
+
assertTSUndefinedKeyword: 'const {assertTSUndefinedKeyword} = types',
|
|
536
|
+
assertTSUnionType: 'const {assertTSUnionType} = types',
|
|
537
|
+
assertTSUnknownKeyword: 'const {assertTSUnknownKeyword} = types',
|
|
538
|
+
assertTSVoidKeyword: 'const {assertTSVoidKeyword} = types',
|
|
539
|
+
assertTaggedTemplateExpression: 'const {assertTaggedTemplateExpression} = types',
|
|
540
|
+
assertTemplateElement: 'const {assertTemplateElement} = types',
|
|
541
|
+
assertTemplateLiteral: 'const {assertTemplateLiteral} = types',
|
|
542
|
+
assertTerminatorless: 'const {assertTerminatorless} = types',
|
|
543
|
+
assertThisExpression: 'const {assertThisExpression} = types',
|
|
544
|
+
assertThisTypeAnnotation: 'const {assertThisTypeAnnotation} = types',
|
|
545
|
+
assertThrowStatement: 'const {assertThrowStatement} = types',
|
|
546
|
+
assertTopicReference: 'const {assertTopicReference} = types',
|
|
547
|
+
assertTryStatement: 'const {assertTryStatement} = types',
|
|
548
|
+
assertTupleExpression: 'const {assertTupleExpression} = types',
|
|
549
|
+
assertTupleTypeAnnotation: 'const {assertTupleTypeAnnotation} = types',
|
|
550
|
+
assertTypeAlias: 'const {assertTypeAlias} = types',
|
|
551
|
+
assertTypeAnnotation: 'const {assertTypeAnnotation} = types',
|
|
552
|
+
assertTypeCastExpression: 'const {assertTypeCastExpression} = types',
|
|
553
|
+
assertTypeParameter: 'const {assertTypeParameter} = types',
|
|
554
|
+
assertTypeParameterDeclaration: 'const {assertTypeParameterDeclaration} = types',
|
|
555
|
+
assertTypeParameterInstantiation: 'const {assertTypeParameterInstantiation} = types',
|
|
556
|
+
assertTypeScript: 'const {assertTypeScript} = types',
|
|
557
|
+
assertTypeofTypeAnnotation: 'const {assertTypeofTypeAnnotation} = types',
|
|
558
|
+
assertUnaryExpression: 'const {assertUnaryExpression} = types',
|
|
559
|
+
assertUnaryLike: 'const {assertUnaryLike} = types',
|
|
560
|
+
assertUnionTypeAnnotation: 'const {assertUnionTypeAnnotation} = types',
|
|
561
|
+
assertUpdateExpression: 'const {assertUpdateExpression} = types',
|
|
562
|
+
assertUserWhitespacable: 'const {assertUserWhitespacable} = types',
|
|
563
|
+
assertV8IntrinsicIdentifier: 'const {assertV8IntrinsicIdentifier} = types',
|
|
564
|
+
assertVariableDeclaration: 'const {assertVariableDeclaration} = types',
|
|
565
|
+
assertVariableDeclarator: 'const {assertVariableDeclarator} = types',
|
|
566
|
+
assertVariance: 'const {assertVariance} = types',
|
|
567
|
+
assertVoidTypeAnnotation: 'const {assertVoidTypeAnnotation} = types',
|
|
568
|
+
assertWhile: 'const {assertWhile} = types',
|
|
569
|
+
assertWhileStatement: 'const {assertWhileStatement} = types',
|
|
570
|
+
assertWithStatement: 'const {assertWithStatement} = types',
|
|
571
|
+
assertYieldExpression: 'const {assertYieldExpression} = types',
|
|
572
|
+
assignmentExpression: 'const {assignmentExpression} = types',
|
|
573
|
+
assignmentPattern: 'const {assignmentPattern} = types',
|
|
574
|
+
awaitExpression: 'const {awaitExpression} = types',
|
|
575
|
+
bigIntLiteral: 'const {bigIntLiteral} = types',
|
|
576
|
+
binaryExpression: 'const {binaryExpression} = types',
|
|
577
|
+
bindExpression: 'const {bindExpression} = types',
|
|
578
|
+
blockStatement: 'const {blockStatement} = types',
|
|
579
|
+
booleanLiteral: 'const {booleanLiteral} = types',
|
|
580
|
+
booleanLiteralTypeAnnotation: 'const {booleanLiteralTypeAnnotation} = types',
|
|
581
|
+
booleanTypeAnnotation: 'const {booleanTypeAnnotation} = types',
|
|
582
|
+
breakStatement: 'const {breakStatement} = types',
|
|
583
|
+
buildMatchMemberExpression: 'const {buildMatchMemberExpression} = types',
|
|
584
|
+
buildUndefinedNode: 'const {buildUndefinedNode} = types',
|
|
585
|
+
callExpression: 'const {callExpression} = types',
|
|
586
|
+
catchClause: 'const {catchClause} = types',
|
|
587
|
+
classAccessorProperty: 'const {classAccessorProperty} = types',
|
|
588
|
+
classBody: 'const {classBody} = types',
|
|
589
|
+
classDeclaration: 'const {classDeclaration} = types',
|
|
590
|
+
classExpression: 'const {classExpression} = types',
|
|
591
|
+
classImplements: 'const {classImplements} = types',
|
|
592
|
+
classMethod: 'const {classMethod} = types',
|
|
593
|
+
classPrivateMethod: 'const {classPrivateMethod} = types',
|
|
594
|
+
classPrivateProperty: 'const {classPrivateProperty} = types',
|
|
595
|
+
classProperty: 'const {classProperty} = types',
|
|
596
|
+
clone: 'const {clone} = types',
|
|
597
|
+
cloneDeep: 'const {cloneDeep} = types',
|
|
598
|
+
cloneDeepWithoutLoc: 'const {cloneDeepWithoutLoc} = types',
|
|
599
|
+
cloneNode: 'const {cloneNode} = types',
|
|
600
|
+
cloneWithoutLoc: 'const {cloneWithoutLoc} = types',
|
|
601
|
+
conditionalExpression: 'const {conditionalExpression} = types',
|
|
602
|
+
continueStatement: 'const {continueStatement} = types',
|
|
603
|
+
createFlowUnionType: 'const {createFlowUnionType} = types',
|
|
604
|
+
createTSUnionType: 'const {createTSUnionType} = types',
|
|
605
|
+
createTypeAnnotationBasedOnTypeof: 'const {createTypeAnnotationBasedOnTypeof} = types',
|
|
606
|
+
createUnionTypeAnnotation: 'const {createUnionTypeAnnotation} = types',
|
|
607
|
+
debuggerStatement: 'const {debuggerStatement} = types',
|
|
608
|
+
declareClass: 'const {declareClass} = types',
|
|
609
|
+
declareExportAllDeclaration: 'const {declareExportAllDeclaration} = types',
|
|
610
|
+
declareExportDeclaration: 'const {declareExportDeclaration} = types',
|
|
611
|
+
declareFunction: 'const {declareFunction} = types',
|
|
612
|
+
declareInterface: 'const {declareInterface} = types',
|
|
613
|
+
declareModule: 'const {declareModule} = types',
|
|
614
|
+
declareModuleExports: 'const {declareModuleExports} = types',
|
|
615
|
+
declareOpaqueType: 'const {declareOpaqueType} = types',
|
|
616
|
+
declareTypeAlias: 'const {declareTypeAlias} = types',
|
|
617
|
+
declareVariable: 'const {declareVariable} = types',
|
|
618
|
+
declaredPredicate: 'const {declaredPredicate} = types',
|
|
619
|
+
decorator: 'const {decorator} = types',
|
|
620
|
+
directive: 'const {directive} = types',
|
|
621
|
+
directiveLiteral: 'const {directiveLiteral} = types',
|
|
622
|
+
doExpression: 'const {doExpression} = types',
|
|
623
|
+
doWhileStatement: 'const {doWhileStatement} = types',
|
|
624
|
+
emptyStatement: 'const {emptyStatement} = types',
|
|
625
|
+
emptyTypeAnnotation: 'const {emptyTypeAnnotation} = types',
|
|
626
|
+
ensureBlock: 'const {ensureBlock} = types',
|
|
627
|
+
enumBooleanBody: 'const {enumBooleanBody} = types',
|
|
628
|
+
enumBooleanMember: 'const {enumBooleanMember} = types',
|
|
629
|
+
enumDeclaration: 'const {enumDeclaration} = types',
|
|
630
|
+
enumDefaultedMember: 'const {enumDefaultedMember} = types',
|
|
631
|
+
enumNumberBody: 'const {enumNumberBody} = types',
|
|
632
|
+
enumNumberMember: 'const {enumNumberMember} = types',
|
|
633
|
+
enumStringBody: 'const {enumStringBody} = types',
|
|
634
|
+
enumStringMember: 'const {enumStringMember} = types',
|
|
635
|
+
enumSymbolBody: 'const {enumSymbolBody} = types',
|
|
636
|
+
existsTypeAnnotation: 'const {existsTypeAnnotation} = types',
|
|
637
|
+
exportAllDeclaration: 'const {exportAllDeclaration} = types',
|
|
638
|
+
exportDefaultDeclaration: 'const {exportDefaultDeclaration} = types',
|
|
639
|
+
exportDefaultSpecifier: 'const {exportDefaultSpecifier} = types',
|
|
640
|
+
exportNamedDeclaration: 'const {exportNamedDeclaration} = types',
|
|
641
|
+
exportNamespaceSpecifier: 'const {exportNamespaceSpecifier} = types',
|
|
642
|
+
exportSpecifier: 'const {exportSpecifier} = types',
|
|
643
|
+
expressionStatement: 'const {expressionStatement} = types',
|
|
644
|
+
file: 'const {file} = types',
|
|
645
|
+
forInStatement: 'const {forInStatement} = types',
|
|
646
|
+
forOfStatement: 'const {forOfStatement} = types',
|
|
647
|
+
forStatement: 'const {forStatement} = types',
|
|
648
|
+
functionDeclaration: 'const {functionDeclaration} = types',
|
|
649
|
+
functionExpression: 'const {functionExpression} = types',
|
|
650
|
+
functionTypeAnnotation: 'const {functionTypeAnnotation} = types',
|
|
651
|
+
functionTypeParam: 'const {functionTypeParam} = types',
|
|
652
|
+
genericTypeAnnotation: 'const {genericTypeAnnotation} = types',
|
|
653
|
+
getAssignmentIdentifiers: 'const {getAssignmentIdentifiers} = types',
|
|
654
|
+
getBindingIdentifiers: 'const {getBindingIdentifiers} = types',
|
|
655
|
+
getFunctionName: 'const {getFunctionName} = types',
|
|
656
|
+
getOuterBindingIdentifiers: 'const {getOuterBindingIdentifiers} = types',
|
|
657
|
+
identifier: 'const {identifier} = types',
|
|
658
|
+
ifStatement: 'const {ifStatement} = types',
|
|
659
|
+
import: 'const {import} = types',
|
|
660
|
+
importAttribute: 'const {importAttribute} = types',
|
|
661
|
+
importDeclaration: 'const {importDeclaration} = types',
|
|
662
|
+
importDefaultSpecifier: 'const {importDefaultSpecifier} = types',
|
|
663
|
+
importExpression: 'const {importExpression} = types',
|
|
664
|
+
importNamespaceSpecifier: 'const {importNamespaceSpecifier} = types',
|
|
665
|
+
importSpecifier: 'const {importSpecifier} = types',
|
|
666
|
+
indexedAccessType: 'const {indexedAccessType} = types',
|
|
667
|
+
inferredPredicate: 'const {inferredPredicate} = types',
|
|
668
|
+
inheritInnerComments: 'const {inheritInnerComments} = types',
|
|
669
|
+
inheritLeadingComments: 'const {inheritLeadingComments} = types',
|
|
670
|
+
inheritTrailingComments: 'const {inheritTrailingComments} = types',
|
|
671
|
+
inherits: 'const {inherits} = types',
|
|
672
|
+
inheritsComments: 'const {inheritsComments} = types',
|
|
673
|
+
interfaceDeclaration: 'const {interfaceDeclaration} = types',
|
|
674
|
+
interfaceExtends: 'const {interfaceExtends} = types',
|
|
675
|
+
interfaceTypeAnnotation: 'const {interfaceTypeAnnotation} = types',
|
|
676
|
+
interpreterDirective: 'const {interpreterDirective} = types',
|
|
677
|
+
intersectionTypeAnnotation: 'const {intersectionTypeAnnotation} = types',
|
|
678
|
+
isAccessor: 'const {isAccessor} = types',
|
|
679
|
+
isAnyTypeAnnotation: 'const {isAnyTypeAnnotation} = types',
|
|
680
|
+
isArgumentPlaceholder: 'const {isArgumentPlaceholder} = types',
|
|
681
|
+
isArrayExpression: 'const {isArrayExpression} = types',
|
|
682
|
+
isArrayPattern: 'const {isArrayPattern} = types',
|
|
683
|
+
isArrayTypeAnnotation: 'const {isArrayTypeAnnotation} = types',
|
|
684
|
+
isArrowFunctionExpression: 'const {isArrowFunctionExpression} = types',
|
|
685
|
+
isAssignmentExpression: 'const {isAssignmentExpression} = types',
|
|
686
|
+
isAssignmentPattern: 'const {isAssignmentPattern} = types',
|
|
687
|
+
isAwaitExpression: 'const {isAwaitExpression} = types',
|
|
688
|
+
isBigIntLiteral: 'const {isBigIntLiteral} = types',
|
|
689
|
+
isBinary: 'const {isBinary} = types',
|
|
690
|
+
isBinaryExpression: 'const {isBinaryExpression} = types',
|
|
691
|
+
isBindExpression: 'const {isBindExpression} = types',
|
|
692
|
+
isBinding: 'const {isBinding} = types',
|
|
693
|
+
isBlock: 'const {isBlock} = types',
|
|
694
|
+
isBlockParent: 'const {isBlockParent} = types',
|
|
695
|
+
isBlockScoped: 'const {isBlockScoped} = types',
|
|
696
|
+
isBlockStatement: 'const {isBlockStatement} = types',
|
|
697
|
+
isBooleanLiteral: 'const {isBooleanLiteral} = types',
|
|
698
|
+
isBooleanLiteralTypeAnnotation: 'const {isBooleanLiteralTypeAnnotation} = types',
|
|
699
|
+
isBooleanTypeAnnotation: 'const {isBooleanTypeAnnotation} = types',
|
|
700
|
+
isBreakStatement: 'const {isBreakStatement} = types',
|
|
701
|
+
isCallExpression: 'const {isCallExpression} = types',
|
|
702
|
+
isCatchClause: 'const {isCatchClause} = types',
|
|
703
|
+
isClass: 'const {isClass} = types',
|
|
704
|
+
isClassAccessorProperty: 'const {isClassAccessorProperty} = types',
|
|
705
|
+
isClassBody: 'const {isClassBody} = types',
|
|
706
|
+
isClassDeclaration: 'const {isClassDeclaration} = types',
|
|
707
|
+
isClassExpression: 'const {isClassExpression} = types',
|
|
708
|
+
isClassImplements: 'const {isClassImplements} = types',
|
|
709
|
+
isClassMethod: 'const {isClassMethod} = types',
|
|
710
|
+
isClassPrivateMethod: 'const {isClassPrivateMethod} = types',
|
|
711
|
+
isClassPrivateProperty: 'const {isClassPrivateProperty} = types',
|
|
712
|
+
isClassProperty: 'const {isClassProperty} = types',
|
|
713
|
+
isCompletionStatement: 'const {isCompletionStatement} = types',
|
|
714
|
+
isConditional: 'const {isConditional} = types',
|
|
715
|
+
isConditionalExpression: 'const {isConditionalExpression} = types',
|
|
716
|
+
isContinueStatement: 'const {isContinueStatement} = types',
|
|
717
|
+
isDebuggerStatement: 'const {isDebuggerStatement} = types',
|
|
718
|
+
isDeclaration: 'const {isDeclaration} = types',
|
|
719
|
+
isDeclareClass: 'const {isDeclareClass} = types',
|
|
720
|
+
isDeclareExportAllDeclaration: 'const {isDeclareExportAllDeclaration} = types',
|
|
721
|
+
isDeclareExportDeclaration: 'const {isDeclareExportDeclaration} = types',
|
|
722
|
+
isDeclareFunction: 'const {isDeclareFunction} = types',
|
|
723
|
+
isDeclareInterface: 'const {isDeclareInterface} = types',
|
|
724
|
+
isDeclareModule: 'const {isDeclareModule} = types',
|
|
725
|
+
isDeclareModuleExports: 'const {isDeclareModuleExports} = types',
|
|
726
|
+
isDeclareOpaqueType: 'const {isDeclareOpaqueType} = types',
|
|
727
|
+
isDeclareTypeAlias: 'const {isDeclareTypeAlias} = types',
|
|
728
|
+
isDeclareVariable: 'const {isDeclareVariable} = types',
|
|
729
|
+
isDeclaredPredicate: 'const {isDeclaredPredicate} = types',
|
|
730
|
+
isDecorator: 'const {isDecorator} = types',
|
|
731
|
+
isDirective: 'const {isDirective} = types',
|
|
732
|
+
isDirectiveLiteral: 'const {isDirectiveLiteral} = types',
|
|
733
|
+
isDoExpression: 'const {isDoExpression} = types',
|
|
734
|
+
isDoWhileStatement: 'const {isDoWhileStatement} = types',
|
|
735
|
+
isEmptyStatement: 'const {isEmptyStatement} = types',
|
|
736
|
+
isEmptyTypeAnnotation: 'const {isEmptyTypeAnnotation} = types',
|
|
737
|
+
isEnumBody: 'const {isEnumBody} = types',
|
|
738
|
+
isEnumBooleanBody: 'const {isEnumBooleanBody} = types',
|
|
739
|
+
isEnumBooleanMember: 'const {isEnumBooleanMember} = types',
|
|
740
|
+
isEnumDeclaration: 'const {isEnumDeclaration} = types',
|
|
741
|
+
isEnumDefaultedMember: 'const {isEnumDefaultedMember} = types',
|
|
742
|
+
isEnumMember: 'const {isEnumMember} = types',
|
|
743
|
+
isEnumNumberBody: 'const {isEnumNumberBody} = types',
|
|
744
|
+
isEnumNumberMember: 'const {isEnumNumberMember} = types',
|
|
745
|
+
isEnumStringBody: 'const {isEnumStringBody} = types',
|
|
746
|
+
isEnumStringMember: 'const {isEnumStringMember} = types',
|
|
747
|
+
isEnumSymbolBody: 'const {isEnumSymbolBody} = types',
|
|
748
|
+
isExistsTypeAnnotation: 'const {isExistsTypeAnnotation} = types',
|
|
749
|
+
isExportAllDeclaration: 'const {isExportAllDeclaration} = types',
|
|
750
|
+
isExportDeclaration: 'const {isExportDeclaration} = types',
|
|
751
|
+
isExportDefaultDeclaration: 'const {isExportDefaultDeclaration} = types',
|
|
752
|
+
isExportDefaultSpecifier: 'const {isExportDefaultSpecifier} = types',
|
|
753
|
+
isExportNamedDeclaration: 'const {isExportNamedDeclaration} = types',
|
|
754
|
+
isExportNamespaceSpecifier: 'const {isExportNamespaceSpecifier} = types',
|
|
755
|
+
isExportSpecifier: 'const {isExportSpecifier} = types',
|
|
756
|
+
isExpression: 'const {isExpression} = types',
|
|
757
|
+
isExpressionStatement: 'const {isExpressionStatement} = types',
|
|
758
|
+
isExpressionWrapper: 'const {isExpressionWrapper} = types',
|
|
759
|
+
isFile: 'const {isFile} = types',
|
|
760
|
+
isFlow: 'const {isFlow} = types',
|
|
761
|
+
isFlowBaseAnnotation: 'const {isFlowBaseAnnotation} = types',
|
|
762
|
+
isFlowDeclaration: 'const {isFlowDeclaration} = types',
|
|
763
|
+
isFlowPredicate: 'const {isFlowPredicate} = types',
|
|
764
|
+
isFlowType: 'const {isFlowType} = types',
|
|
765
|
+
isFor: 'const {isFor} = types',
|
|
766
|
+
isForInStatement: 'const {isForInStatement} = types',
|
|
767
|
+
isForOfStatement: 'const {isForOfStatement} = types',
|
|
768
|
+
isForStatement: 'const {isForStatement} = types',
|
|
769
|
+
isForXStatement: 'const {isForXStatement} = types',
|
|
770
|
+
isFunction: 'const {isFunction} = types',
|
|
771
|
+
isFunctionDeclaration: 'const {isFunctionDeclaration} = types',
|
|
772
|
+
isFunctionExpression: 'const {isFunctionExpression} = types',
|
|
773
|
+
isFunctionParent: 'const {isFunctionParent} = types',
|
|
774
|
+
isFunctionTypeAnnotation: 'const {isFunctionTypeAnnotation} = types',
|
|
775
|
+
isFunctionTypeParam: 'const {isFunctionTypeParam} = types',
|
|
776
|
+
isGenericTypeAnnotation: 'const {isGenericTypeAnnotation} = types',
|
|
777
|
+
isIdentifier: 'const {isIdentifier} = types',
|
|
778
|
+
isIfStatement: 'const {isIfStatement} = types',
|
|
779
|
+
isImmutable: 'const {isImmutable} = types',
|
|
780
|
+
isImport: 'const {isImport} = types',
|
|
781
|
+
isImportAttribute: 'const {isImportAttribute} = types',
|
|
782
|
+
isImportDeclaration: 'const {isImportDeclaration} = types',
|
|
783
|
+
isImportDefaultSpecifier: 'const {isImportDefaultSpecifier} = types',
|
|
784
|
+
isImportExpression: 'const {isImportExpression} = types',
|
|
785
|
+
isImportNamespaceSpecifier: 'const {isImportNamespaceSpecifier} = types',
|
|
786
|
+
isImportOrExportDeclaration: 'const {isImportOrExportDeclaration} = types',
|
|
787
|
+
isImportSpecifier: 'const {isImportSpecifier} = types',
|
|
788
|
+
isIndexedAccessType: 'const {isIndexedAccessType} = types',
|
|
789
|
+
isInferredPredicate: 'const {isInferredPredicate} = types',
|
|
790
|
+
isInterfaceDeclaration: 'const {isInterfaceDeclaration} = types',
|
|
791
|
+
isInterfaceExtends: 'const {isInterfaceExtends} = types',
|
|
792
|
+
isInterfaceTypeAnnotation: 'const {isInterfaceTypeAnnotation} = types',
|
|
793
|
+
isInterpreterDirective: 'const {isInterpreterDirective} = types',
|
|
794
|
+
isIntersectionTypeAnnotation: 'const {isIntersectionTypeAnnotation} = types',
|
|
795
|
+
isJSX: 'const {isJSX} = types',
|
|
796
|
+
isJSXAttribute: 'const {isJSXAttribute} = types',
|
|
797
|
+
isJSXClosingElement: 'const {isJSXClosingElement} = types',
|
|
798
|
+
isJSXClosingFragment: 'const {isJSXClosingFragment} = types',
|
|
799
|
+
isJSXElement: 'const {isJSXElement} = types',
|
|
800
|
+
isJSXEmptyExpression: 'const {isJSXEmptyExpression} = types',
|
|
801
|
+
isJSXExpressionContainer: 'const {isJSXExpressionContainer} = types',
|
|
802
|
+
isJSXFragment: 'const {isJSXFragment} = types',
|
|
803
|
+
isJSXIdentifier: 'const {isJSXIdentifier} = types',
|
|
804
|
+
isJSXMemberExpression: 'const {isJSXMemberExpression} = types',
|
|
805
|
+
isJSXNamespacedName: 'const {isJSXNamespacedName} = types',
|
|
806
|
+
isJSXOpeningElement: 'const {isJSXOpeningElement} = types',
|
|
807
|
+
isJSXOpeningFragment: 'const {isJSXOpeningFragment} = types',
|
|
808
|
+
isJSXSpreadAttribute: 'const {isJSXSpreadAttribute} = types',
|
|
809
|
+
isJSXSpreadChild: 'const {isJSXSpreadChild} = types',
|
|
810
|
+
isJSXText: 'const {isJSXText} = types',
|
|
811
|
+
isLVal: 'const {isLVal} = types',
|
|
812
|
+
isLabeledStatement: 'const {isLabeledStatement} = types',
|
|
813
|
+
isLet: 'const {isLet} = types',
|
|
814
|
+
isLiteral: 'const {isLiteral} = types',
|
|
815
|
+
isLogicalExpression: 'const {isLogicalExpression} = types',
|
|
816
|
+
isLoop: 'const {isLoop} = types',
|
|
817
|
+
isMemberExpression: 'const {isMemberExpression} = types',
|
|
818
|
+
isMetaProperty: 'const {isMetaProperty} = types',
|
|
819
|
+
isMethod: 'const {isMethod} = types',
|
|
820
|
+
isMiscellaneous: 'const {isMiscellaneous} = types',
|
|
821
|
+
isMixedTypeAnnotation: 'const {isMixedTypeAnnotation} = types',
|
|
822
|
+
isModuleDeclaration: 'const {isModuleDeclaration} = types',
|
|
823
|
+
isModuleExpression: 'const {isModuleExpression} = types',
|
|
824
|
+
isModuleSpecifier: 'const {isModuleSpecifier} = types',
|
|
825
|
+
isNewExpression: 'const {isNewExpression} = types',
|
|
826
|
+
isNode: 'const {isNode} = types',
|
|
827
|
+
isNodesEquivalent: 'const {isNodesEquivalent} = types',
|
|
828
|
+
isNullLiteral: 'const {isNullLiteral} = types',
|
|
829
|
+
isNullLiteralTypeAnnotation: 'const {isNullLiteralTypeAnnotation} = types',
|
|
830
|
+
isNullableTypeAnnotation: 'const {isNullableTypeAnnotation} = types',
|
|
831
|
+
isNumberLiteral: 'const {isNumberLiteral} = types',
|
|
832
|
+
isNumberLiteralTypeAnnotation: 'const {isNumberLiteralTypeAnnotation} = types',
|
|
833
|
+
isNumberTypeAnnotation: 'const {isNumberTypeAnnotation} = types',
|
|
834
|
+
isNumericLiteral: 'const {isNumericLiteral} = types',
|
|
835
|
+
isObjectExpression: 'const {isObjectExpression} = types',
|
|
836
|
+
isObjectMember: 'const {isObjectMember} = types',
|
|
837
|
+
isObjectMethod: 'const {isObjectMethod} = types',
|
|
838
|
+
isObjectPattern: 'const {isObjectPattern} = types',
|
|
839
|
+
isObjectProperty: 'const {isObjectProperty} = types',
|
|
840
|
+
isObjectTypeAnnotation: 'const {isObjectTypeAnnotation} = types',
|
|
841
|
+
isObjectTypeCallProperty: 'const {isObjectTypeCallProperty} = types',
|
|
842
|
+
isObjectTypeIndexer: 'const {isObjectTypeIndexer} = types',
|
|
843
|
+
isObjectTypeInternalSlot: 'const {isObjectTypeInternalSlot} = types',
|
|
844
|
+
isObjectTypeProperty: 'const {isObjectTypeProperty} = types',
|
|
845
|
+
isObjectTypeSpreadProperty: 'const {isObjectTypeSpreadProperty} = types',
|
|
846
|
+
isOpaqueType: 'const {isOpaqueType} = types',
|
|
847
|
+
isOptionalCallExpression: 'const {isOptionalCallExpression} = types',
|
|
848
|
+
isOptionalIndexedAccessType: 'const {isOptionalIndexedAccessType} = types',
|
|
849
|
+
isOptionalMemberExpression: 'const {isOptionalMemberExpression} = types',
|
|
850
|
+
isParenthesizedExpression: 'const {isParenthesizedExpression} = types',
|
|
851
|
+
isPattern: 'const {isPattern} = types',
|
|
852
|
+
isPatternLike: 'const {isPatternLike} = types',
|
|
853
|
+
isPipelineBareFunction: 'const {isPipelineBareFunction} = types',
|
|
854
|
+
isPipelinePrimaryTopicReference: 'const {isPipelinePrimaryTopicReference} = types',
|
|
855
|
+
isPipelineTopicExpression: 'const {isPipelineTopicExpression} = types',
|
|
856
|
+
isPlaceholder: 'const {isPlaceholder} = types',
|
|
857
|
+
isPlaceholderType: 'const {isPlaceholderType} = types',
|
|
858
|
+
isPrivate: 'const {isPrivate} = types',
|
|
859
|
+
isPrivateName: 'const {isPrivateName} = types',
|
|
860
|
+
isProgram: 'const {isProgram} = types',
|
|
861
|
+
isProperty: 'const {isProperty} = types',
|
|
862
|
+
isPureish: 'const {isPureish} = types',
|
|
863
|
+
isQualifiedTypeIdentifier: 'const {isQualifiedTypeIdentifier} = types',
|
|
864
|
+
isRecordExpression: 'const {isRecordExpression} = types',
|
|
865
|
+
isReferenced: 'const {isReferenced} = types',
|
|
866
|
+
isRegExpLiteral: 'const {isRegExpLiteral} = types',
|
|
867
|
+
isRegexLiteral: 'const {isRegexLiteral} = types',
|
|
868
|
+
isRestElement: 'const {isRestElement} = types',
|
|
869
|
+
isRestProperty: 'const {isRestProperty} = types',
|
|
870
|
+
isReturnStatement: 'const {isReturnStatement} = types',
|
|
871
|
+
isScopable: 'const {isScopable} = types',
|
|
872
|
+
isScope: 'const {isScope} = types',
|
|
873
|
+
isSequenceExpression: 'const {isSequenceExpression} = types',
|
|
874
|
+
isSpecifierDefault: 'const {isSpecifierDefault} = types',
|
|
875
|
+
isSpreadElement: 'const {isSpreadElement} = types',
|
|
876
|
+
isSpreadProperty: 'const {isSpreadProperty} = types',
|
|
877
|
+
isStandardized: 'const {isStandardized} = types',
|
|
878
|
+
isStatement: 'const {isStatement} = types',
|
|
879
|
+
isStaticBlock: 'const {isStaticBlock} = types',
|
|
880
|
+
isStringLiteral: 'const {isStringLiteral} = types',
|
|
881
|
+
isStringLiteralTypeAnnotation: 'const {isStringLiteralTypeAnnotation} = types',
|
|
882
|
+
isStringTypeAnnotation: 'const {isStringTypeAnnotation} = types',
|
|
883
|
+
isSuper: 'const {isSuper} = types',
|
|
884
|
+
isSwitchCase: 'const {isSwitchCase} = types',
|
|
885
|
+
isSwitchStatement: 'const {isSwitchStatement} = types',
|
|
886
|
+
isSymbolTypeAnnotation: 'const {isSymbolTypeAnnotation} = types',
|
|
887
|
+
isTSAnyKeyword: 'const {isTSAnyKeyword} = types',
|
|
888
|
+
isTSArrayType: 'const {isTSArrayType} = types',
|
|
889
|
+
isTSAsExpression: 'const {isTSAsExpression} = types',
|
|
890
|
+
isTSBaseType: 'const {isTSBaseType} = types',
|
|
891
|
+
isTSBigIntKeyword: 'const {isTSBigIntKeyword} = types',
|
|
892
|
+
isTSBooleanKeyword: 'const {isTSBooleanKeyword} = types',
|
|
893
|
+
isTSCallSignatureDeclaration: 'const {isTSCallSignatureDeclaration} = types',
|
|
894
|
+
isTSClassImplements: 'const {isTSClassImplements} = types',
|
|
895
|
+
isTSConditionalType: 'const {isTSConditionalType} = types',
|
|
896
|
+
isTSConstructSignatureDeclaration: 'const {isTSConstructSignatureDeclaration} = types',
|
|
897
|
+
isTSConstructorType: 'const {isTSConstructorType} = types',
|
|
898
|
+
isTSDeclareFunction: 'const {isTSDeclareFunction} = types',
|
|
899
|
+
isTSDeclareMethod: 'const {isTSDeclareMethod} = types',
|
|
900
|
+
isTSEntityName: 'const {isTSEntityName} = types',
|
|
901
|
+
isTSEnumBody: 'const {isTSEnumBody} = types',
|
|
902
|
+
isTSEnumDeclaration: 'const {isTSEnumDeclaration} = types',
|
|
903
|
+
isTSEnumMember: 'const {isTSEnumMember} = types',
|
|
904
|
+
isTSExportAssignment: 'const {isTSExportAssignment} = types',
|
|
905
|
+
isTSExternalModuleReference: 'const {isTSExternalModuleReference} = types',
|
|
906
|
+
isTSFunctionType: 'const {isTSFunctionType} = types',
|
|
907
|
+
isTSImportEqualsDeclaration: 'const {isTSImportEqualsDeclaration} = types',
|
|
908
|
+
isTSImportType: 'const {isTSImportType} = types',
|
|
909
|
+
isTSIndexSignature: 'const {isTSIndexSignature} = types',
|
|
910
|
+
isTSIndexedAccessType: 'const {isTSIndexedAccessType} = types',
|
|
911
|
+
isTSInferType: 'const {isTSInferType} = types',
|
|
912
|
+
isTSInstantiationExpression: 'const {isTSInstantiationExpression} = types',
|
|
913
|
+
isTSInterfaceBody: 'const {isTSInterfaceBody} = types',
|
|
914
|
+
isTSInterfaceDeclaration: 'const {isTSInterfaceDeclaration} = types',
|
|
915
|
+
isTSInterfaceHeritage: 'const {isTSInterfaceHeritage} = types',
|
|
916
|
+
isTSIntersectionType: 'const {isTSIntersectionType} = types',
|
|
917
|
+
isTSIntrinsicKeyword: 'const {isTSIntrinsicKeyword} = types',
|
|
918
|
+
isTSLiteralType: 'const {isTSLiteralType} = types',
|
|
919
|
+
isTSMappedType: 'const {isTSMappedType} = types',
|
|
920
|
+
isTSMethodSignature: 'const {isTSMethodSignature} = types',
|
|
921
|
+
isTSModuleBlock: 'const {isTSModuleBlock} = types',
|
|
922
|
+
isTSModuleDeclaration: 'const {isTSModuleDeclaration} = types',
|
|
923
|
+
isTSNamedTupleMember: 'const {isTSNamedTupleMember} = types',
|
|
924
|
+
isTSNamespaceExportDeclaration: 'const {isTSNamespaceExportDeclaration} = types',
|
|
925
|
+
isTSNeverKeyword: 'const {isTSNeverKeyword} = types',
|
|
926
|
+
isTSNonNullExpression: 'const {isTSNonNullExpression} = types',
|
|
927
|
+
isTSNullKeyword: 'const {isTSNullKeyword} = types',
|
|
928
|
+
isTSNumberKeyword: 'const {isTSNumberKeyword} = types',
|
|
929
|
+
isTSObjectKeyword: 'const {isTSObjectKeyword} = types',
|
|
930
|
+
isTSOptionalType: 'const {isTSOptionalType} = types',
|
|
931
|
+
isTSParameterProperty: 'const {isTSParameterProperty} = types',
|
|
932
|
+
isTSParenthesizedType: 'const {isTSParenthesizedType} = types',
|
|
933
|
+
isTSPropertySignature: 'const {isTSPropertySignature} = types',
|
|
934
|
+
isTSQualifiedName: 'const {isTSQualifiedName} = types',
|
|
935
|
+
isTSRestType: 'const {isTSRestType} = types',
|
|
936
|
+
isTSSatisfiesExpression: 'const {isTSSatisfiesExpression} = types',
|
|
937
|
+
isTSStringKeyword: 'const {isTSStringKeyword} = types',
|
|
938
|
+
isTSSymbolKeyword: 'const {isTSSymbolKeyword} = types',
|
|
939
|
+
isTSTemplateLiteralType: 'const {isTSTemplateLiteralType} = types',
|
|
940
|
+
isTSThisType: 'const {isTSThisType} = types',
|
|
941
|
+
isTSTupleType: 'const {isTSTupleType} = types',
|
|
942
|
+
isTSType: 'const {isTSType} = types',
|
|
943
|
+
isTSTypeAliasDeclaration: 'const {isTSTypeAliasDeclaration} = types',
|
|
944
|
+
isTSTypeAnnotation: 'const {isTSTypeAnnotation} = types',
|
|
945
|
+
isTSTypeAssertion: 'const {isTSTypeAssertion} = types',
|
|
946
|
+
isTSTypeElement: 'const {isTSTypeElement} = types',
|
|
947
|
+
isTSTypeLiteral: 'const {isTSTypeLiteral} = types',
|
|
948
|
+
isTSTypeOperator: 'const {isTSTypeOperator} = types',
|
|
949
|
+
isTSTypeParameter: 'const {isTSTypeParameter} = types',
|
|
950
|
+
isTSTypeParameterDeclaration: 'const {isTSTypeParameterDeclaration} = types',
|
|
951
|
+
isTSTypeParameterInstantiation: 'const {isTSTypeParameterInstantiation} = types',
|
|
952
|
+
isTSTypePredicate: 'const {isTSTypePredicate} = types',
|
|
953
|
+
isTSTypeQuery: 'const {isTSTypeQuery} = types',
|
|
954
|
+
isTSTypeReference: 'const {isTSTypeReference} = types',
|
|
955
|
+
isTSUndefinedKeyword: 'const {isTSUndefinedKeyword} = types',
|
|
956
|
+
isTSUnionType: 'const {isTSUnionType} = types',
|
|
957
|
+
isTSUnknownKeyword: 'const {isTSUnknownKeyword} = types',
|
|
958
|
+
isTSVoidKeyword: 'const {isTSVoidKeyword} = types',
|
|
959
|
+
isTaggedTemplateExpression: 'const {isTaggedTemplateExpression} = types',
|
|
960
|
+
isTemplateElement: 'const {isTemplateElement} = types',
|
|
961
|
+
isTemplateLiteral: 'const {isTemplateLiteral} = types',
|
|
962
|
+
isTerminatorless: 'const {isTerminatorless} = types',
|
|
963
|
+
isThisExpression: 'const {isThisExpression} = types',
|
|
964
|
+
isThisTypeAnnotation: 'const {isThisTypeAnnotation} = types',
|
|
965
|
+
isThrowStatement: 'const {isThrowStatement} = types',
|
|
966
|
+
isTopicReference: 'const {isTopicReference} = types',
|
|
967
|
+
isTryStatement: 'const {isTryStatement} = types',
|
|
968
|
+
isTupleExpression: 'const {isTupleExpression} = types',
|
|
969
|
+
isTupleTypeAnnotation: 'const {isTupleTypeAnnotation} = types',
|
|
970
|
+
isType: 'const {isType} = types',
|
|
971
|
+
isTypeAlias: 'const {isTypeAlias} = types',
|
|
972
|
+
isTypeAnnotation: 'const {isTypeAnnotation} = types',
|
|
973
|
+
isTypeCastExpression: 'const {isTypeCastExpression} = types',
|
|
974
|
+
isTypeParameter: 'const {isTypeParameter} = types',
|
|
975
|
+
isTypeParameterDeclaration: 'const {isTypeParameterDeclaration} = types',
|
|
976
|
+
isTypeParameterInstantiation: 'const {isTypeParameterInstantiation} = types',
|
|
977
|
+
isTypeScript: 'const {isTypeScript} = types',
|
|
978
|
+
isTypeofTypeAnnotation: 'const {isTypeofTypeAnnotation} = types',
|
|
979
|
+
isUnaryExpression: 'const {isUnaryExpression} = types',
|
|
980
|
+
isUnaryLike: 'const {isUnaryLike} = types',
|
|
981
|
+
isUnionTypeAnnotation: 'const {isUnionTypeAnnotation} = types',
|
|
982
|
+
isUpdateExpression: 'const {isUpdateExpression} = types',
|
|
983
|
+
isUserWhitespacable: 'const {isUserWhitespacable} = types',
|
|
984
|
+
isV8IntrinsicIdentifier: 'const {isV8IntrinsicIdentifier} = types',
|
|
985
|
+
isValidES3Identifier: 'const {isValidES3Identifier} = types',
|
|
986
|
+
isValidIdentifier: 'const {isValidIdentifier} = types',
|
|
987
|
+
isVar: 'const {isVar} = types',
|
|
988
|
+
isVariableDeclaration: 'const {isVariableDeclaration} = types',
|
|
989
|
+
isVariableDeclarator: 'const {isVariableDeclarator} = types',
|
|
990
|
+
isVariance: 'const {isVariance} = types',
|
|
991
|
+
isVoidTypeAnnotation: 'const {isVoidTypeAnnotation} = types',
|
|
992
|
+
isWhile: 'const {isWhile} = types',
|
|
993
|
+
isWhileStatement: 'const {isWhileStatement} = types',
|
|
994
|
+
isWithStatement: 'const {isWithStatement} = types',
|
|
995
|
+
isYieldExpression: 'const {isYieldExpression} = types',
|
|
996
|
+
jsxAttribute: 'const {jsxAttribute} = types',
|
|
997
|
+
jsxClosingElement: 'const {jsxClosingElement} = types',
|
|
998
|
+
jsxClosingFragment: 'const {jsxClosingFragment} = types',
|
|
999
|
+
jsxElement: 'const {jsxElement} = types',
|
|
1000
|
+
jsxEmptyExpression: 'const {jsxEmptyExpression} = types',
|
|
1001
|
+
jsxExpressionContainer: 'const {jsxExpressionContainer} = types',
|
|
1002
|
+
jsxFragment: 'const {jsxFragment} = types',
|
|
1003
|
+
jsxIdentifier: 'const {jsxIdentifier} = types',
|
|
1004
|
+
jsxMemberExpression: 'const {jsxMemberExpression} = types',
|
|
1005
|
+
jsxNamespacedName: 'const {jsxNamespacedName} = types',
|
|
1006
|
+
jsxOpeningElement: 'const {jsxOpeningElement} = types',
|
|
1007
|
+
jsxOpeningFragment: 'const {jsxOpeningFragment} = types',
|
|
1008
|
+
jsxSpreadAttribute: 'const {jsxSpreadAttribute} = types',
|
|
1009
|
+
jsxSpreadChild: 'const {jsxSpreadChild} = types',
|
|
1010
|
+
jsxText: 'const {jsxText} = types',
|
|
1011
|
+
labeledStatement: 'const {labeledStatement} = types',
|
|
1012
|
+
logicalExpression: 'const {logicalExpression} = types',
|
|
1013
|
+
matchesPattern: 'const {matchesPattern} = types',
|
|
1014
|
+
memberExpression: 'const {memberExpression} = types',
|
|
1015
|
+
metaProperty: 'const {metaProperty} = types',
|
|
1016
|
+
mixedTypeAnnotation: 'const {mixedTypeAnnotation} = types',
|
|
1017
|
+
moduleExpression: 'const {moduleExpression} = types',
|
|
1018
|
+
newExpression: 'const {newExpression} = types',
|
|
1019
|
+
nullLiteral: 'const {nullLiteral} = types',
|
|
1020
|
+
nullLiteralTypeAnnotation: 'const {nullLiteralTypeAnnotation} = types',
|
|
1021
|
+
nullableTypeAnnotation: 'const {nullableTypeAnnotation} = types',
|
|
1022
|
+
numberLiteral: 'const {numberLiteral} = types',
|
|
1023
|
+
numberLiteralTypeAnnotation: 'const {numberLiteralTypeAnnotation} = types',
|
|
1024
|
+
numberTypeAnnotation: 'const {numberTypeAnnotation} = types',
|
|
1025
|
+
numericLiteral: 'const {numericLiteral} = types',
|
|
1026
|
+
objectExpression: 'const {objectExpression} = types',
|
|
1027
|
+
objectMethod: 'const {objectMethod} = types',
|
|
1028
|
+
objectPattern: 'const {objectPattern} = types',
|
|
1029
|
+
objectProperty: 'const {objectProperty} = types',
|
|
1030
|
+
objectTypeAnnotation: 'const {objectTypeAnnotation} = types',
|
|
1031
|
+
objectTypeCallProperty: 'const {objectTypeCallProperty} = types',
|
|
1032
|
+
objectTypeIndexer: 'const {objectTypeIndexer} = types',
|
|
1033
|
+
objectTypeInternalSlot: 'const {objectTypeInternalSlot} = types',
|
|
1034
|
+
objectTypeProperty: 'const {objectTypeProperty} = types',
|
|
1035
|
+
objectTypeSpreadProperty: 'const {objectTypeSpreadProperty} = types',
|
|
1036
|
+
opaqueType: 'const {opaqueType} = types',
|
|
1037
|
+
optionalCallExpression: 'const {optionalCallExpression} = types',
|
|
1038
|
+
optionalIndexedAccessType: 'const {optionalIndexedAccessType} = types',
|
|
1039
|
+
optionalMemberExpression: 'const {optionalMemberExpression} = types',
|
|
1040
|
+
parenthesizedExpression: 'const {parenthesizedExpression} = types',
|
|
1041
|
+
pipelineBareFunction: 'const {pipelineBareFunction} = types',
|
|
1042
|
+
pipelinePrimaryTopicReference: 'const {pipelinePrimaryTopicReference} = types',
|
|
1043
|
+
pipelineTopicExpression: 'const {pipelineTopicExpression} = types',
|
|
1044
|
+
placeholder: 'const {placeholder} = types',
|
|
1045
|
+
prependToMemberExpression: 'const {prependToMemberExpression} = types',
|
|
1046
|
+
privateName: 'const {privateName} = types',
|
|
1047
|
+
program: 'const {program} = types',
|
|
1048
|
+
qualifiedTypeIdentifier: 'const {qualifiedTypeIdentifier} = types',
|
|
1049
|
+
react: 'const {react} = types',
|
|
1050
|
+
recordExpression: 'const {recordExpression} = types',
|
|
1051
|
+
regExpLiteral: 'const {regExpLiteral} = types',
|
|
1052
|
+
regexLiteral: 'const {regexLiteral} = types',
|
|
1053
|
+
removeComments: 'const {removeComments} = types',
|
|
1054
|
+
removeProperties: 'const {removeProperties} = types',
|
|
1055
|
+
removePropertiesDeep: 'const {removePropertiesDeep} = types',
|
|
1056
|
+
removeTypeDuplicates: 'const {removeTypeDuplicates} = types',
|
|
1057
|
+
restElement: 'const {restElement} = types',
|
|
1058
|
+
restProperty: 'const {restProperty} = types',
|
|
1059
|
+
returnStatement: 'const {returnStatement} = types',
|
|
1060
|
+
sequenceExpression: 'const {sequenceExpression} = types',
|
|
1061
|
+
shallowEqual: 'const {shallowEqual} = types',
|
|
1062
|
+
spreadElement: 'const {spreadElement} = types',
|
|
1063
|
+
spreadProperty: 'const {spreadProperty} = types',
|
|
1064
|
+
staticBlock: 'const {staticBlock} = types',
|
|
1065
|
+
stringLiteral: 'const {stringLiteral} = types',
|
|
1066
|
+
stringLiteralTypeAnnotation: 'const {stringLiteralTypeAnnotation} = types',
|
|
1067
|
+
stringTypeAnnotation: 'const {stringTypeAnnotation} = types',
|
|
1068
|
+
super: 'const {super} = types',
|
|
1069
|
+
switchCase: 'const {switchCase} = types',
|
|
1070
|
+
switchStatement: 'const {switchStatement} = types',
|
|
1071
|
+
symbolTypeAnnotation: 'const {symbolTypeAnnotation} = types',
|
|
1072
|
+
taggedTemplateExpression: 'const {taggedTemplateExpression} = types',
|
|
1073
|
+
templateElement: 'const {templateElement} = types',
|
|
1074
|
+
templateLiteral: 'const {templateLiteral} = types',
|
|
1075
|
+
thisExpression: 'const {thisExpression} = types',
|
|
1076
|
+
thisTypeAnnotation: 'const {thisTypeAnnotation} = types',
|
|
1077
|
+
throwStatement: 'const {throwStatement} = types',
|
|
1078
|
+
toBindingIdentifierName: 'const {toBindingIdentifierName} = types',
|
|
1079
|
+
toBlock: 'const {toBlock} = types',
|
|
1080
|
+
toComputedKey: 'const {toComputedKey} = types',
|
|
1081
|
+
toExpression: 'const {toExpression} = types',
|
|
1082
|
+
toIdentifier: 'const {toIdentifier} = types',
|
|
1083
|
+
toKeyAlias: 'const {toKeyAlias} = types',
|
|
1084
|
+
toStatement: 'const {toStatement} = types',
|
|
1085
|
+
topicReference: 'const {topicReference} = types',
|
|
1086
|
+
traverse: 'const {traverse} = types',
|
|
1087
|
+
traverseFast: 'const {traverseFast} = types',
|
|
1088
|
+
tryStatement: 'const {tryStatement} = types',
|
|
1089
|
+
tsAnyKeyword: 'const {tsAnyKeyword} = types',
|
|
1090
|
+
tsArrayType: 'const {tsArrayType} = types',
|
|
1091
|
+
tsAsExpression: 'const {tsAsExpression} = types',
|
|
1092
|
+
tsBigIntKeyword: 'const {tsBigIntKeyword} = types',
|
|
1093
|
+
tsBooleanKeyword: 'const {tsBooleanKeyword} = types',
|
|
1094
|
+
tsCallSignatureDeclaration: 'const {tsCallSignatureDeclaration} = types',
|
|
1095
|
+
tsClassImplements: 'const {tsClassImplements} = types',
|
|
1096
|
+
tsConditionalType: 'const {tsConditionalType} = types',
|
|
1097
|
+
tsConstructSignatureDeclaration: 'const {tsConstructSignatureDeclaration} = types',
|
|
1098
|
+
tsConstructorType: 'const {tsConstructorType} = types',
|
|
1099
|
+
tsDeclareFunction: 'const {tsDeclareFunction} = types',
|
|
1100
|
+
tsDeclareMethod: 'const {tsDeclareMethod} = types',
|
|
1101
|
+
tsEnumBody: 'const {tsEnumBody} = types',
|
|
1102
|
+
tsEnumDeclaration: 'const {tsEnumDeclaration} = types',
|
|
1103
|
+
tsEnumMember: 'const {tsEnumMember} = types',
|
|
1104
|
+
tsExportAssignment: 'const {tsExportAssignment} = types',
|
|
1105
|
+
tsExternalModuleReference: 'const {tsExternalModuleReference} = types',
|
|
1106
|
+
tsFunctionType: 'const {tsFunctionType} = types',
|
|
1107
|
+
tsImportEqualsDeclaration: 'const {tsImportEqualsDeclaration} = types',
|
|
1108
|
+
tsImportType: 'const {tsImportType} = types',
|
|
1109
|
+
tsIndexSignature: 'const {tsIndexSignature} = types',
|
|
1110
|
+
tsIndexedAccessType: 'const {tsIndexedAccessType} = types',
|
|
1111
|
+
tsInferType: 'const {tsInferType} = types',
|
|
1112
|
+
tsInstantiationExpression: 'const {tsInstantiationExpression} = types',
|
|
1113
|
+
tsInterfaceBody: 'const {tsInterfaceBody} = types',
|
|
1114
|
+
tsInterfaceDeclaration: 'const {tsInterfaceDeclaration} = types',
|
|
1115
|
+
tsInterfaceHeritage: 'const {tsInterfaceHeritage} = types',
|
|
1116
|
+
tsIntersectionType: 'const {tsIntersectionType} = types',
|
|
1117
|
+
tsIntrinsicKeyword: 'const {tsIntrinsicKeyword} = types',
|
|
1118
|
+
tsLiteralType: 'const {tsLiteralType} = types',
|
|
1119
|
+
tsMappedType: 'const {tsMappedType} = types',
|
|
1120
|
+
tsMethodSignature: 'const {tsMethodSignature} = types',
|
|
1121
|
+
tsModuleBlock: 'const {tsModuleBlock} = types',
|
|
1122
|
+
tsModuleDeclaration: 'const {tsModuleDeclaration} = types',
|
|
1123
|
+
tsNamedTupleMember: 'const {tsNamedTupleMember} = types',
|
|
1124
|
+
tsNamespaceExportDeclaration: 'const {tsNamespaceExportDeclaration} = types',
|
|
1125
|
+
tsNeverKeyword: 'const {tsNeverKeyword} = types',
|
|
1126
|
+
tsNonNullExpression: 'const {tsNonNullExpression} = types',
|
|
1127
|
+
tsNullKeyword: 'const {tsNullKeyword} = types',
|
|
1128
|
+
tsNumberKeyword: 'const {tsNumberKeyword} = types',
|
|
1129
|
+
tsObjectKeyword: 'const {tsObjectKeyword} = types',
|
|
1130
|
+
tsOptionalType: 'const {tsOptionalType} = types',
|
|
1131
|
+
tsParameterProperty: 'const {tsParameterProperty} = types',
|
|
1132
|
+
tsParenthesizedType: 'const {tsParenthesizedType} = types',
|
|
1133
|
+
tsPropertySignature: 'const {tsPropertySignature} = types',
|
|
1134
|
+
tsQualifiedName: 'const {tsQualifiedName} = types',
|
|
1135
|
+
tsRestType: 'const {tsRestType} = types',
|
|
1136
|
+
tsSatisfiesExpression: 'const {tsSatisfiesExpression} = types',
|
|
1137
|
+
tsStringKeyword: 'const {tsStringKeyword} = types',
|
|
1138
|
+
tsSymbolKeyword: 'const {tsSymbolKeyword} = types',
|
|
1139
|
+
tsTemplateLiteralType: 'const {tsTemplateLiteralType} = types',
|
|
1140
|
+
tsThisType: 'const {tsThisType} = types',
|
|
1141
|
+
tsTupleType: 'const {tsTupleType} = types',
|
|
1142
|
+
tsTypeAliasDeclaration: 'const {tsTypeAliasDeclaration} = types',
|
|
1143
|
+
tsTypeAnnotation: 'const {tsTypeAnnotation} = types',
|
|
1144
|
+
tsTypeAssertion: 'const {tsTypeAssertion} = types',
|
|
1145
|
+
tsTypeLiteral: 'const {tsTypeLiteral} = types',
|
|
1146
|
+
tsTypeOperator: 'const {tsTypeOperator} = types',
|
|
1147
|
+
tsTypeParameter: 'const {tsTypeParameter} = types',
|
|
1148
|
+
tsTypeParameterDeclaration: 'const {tsTypeParameterDeclaration} = types',
|
|
1149
|
+
tsTypeParameterInstantiation: 'const {tsTypeParameterInstantiation} = types',
|
|
1150
|
+
tsTypePredicate: 'const {tsTypePredicate} = types',
|
|
1151
|
+
tsTypeQuery: 'const {tsTypeQuery} = types',
|
|
1152
|
+
tsTypeReference: 'const {tsTypeReference} = types',
|
|
1153
|
+
tsUndefinedKeyword: 'const {tsUndefinedKeyword} = types',
|
|
1154
|
+
tsUnionType: 'const {tsUnionType} = types',
|
|
1155
|
+
tsUnknownKeyword: 'const {tsUnknownKeyword} = types',
|
|
1156
|
+
tsVoidKeyword: 'const {tsVoidKeyword} = types',
|
|
1157
|
+
tupleExpression: 'const {tupleExpression} = types',
|
|
1158
|
+
tupleTypeAnnotation: 'const {tupleTypeAnnotation} = types',
|
|
1159
|
+
typeAlias: 'const {typeAlias} = types',
|
|
1160
|
+
typeAnnotation: 'const {typeAnnotation} = types',
|
|
1161
|
+
typeCastExpression: 'const {typeCastExpression} = types',
|
|
1162
|
+
typeParameter: 'const {typeParameter} = types',
|
|
1163
|
+
typeParameterDeclaration: 'const {typeParameterDeclaration} = types',
|
|
1164
|
+
typeParameterInstantiation: 'const {typeParameterInstantiation} = types',
|
|
1165
|
+
typeofTypeAnnotation: 'const {typeofTypeAnnotation} = types',
|
|
1166
|
+
unaryExpression: 'const {unaryExpression} = types',
|
|
1167
|
+
unionTypeAnnotation: 'const {unionTypeAnnotation} = types',
|
|
1168
|
+
updateExpression: 'const {updateExpression} = types',
|
|
1169
|
+
v8IntrinsicIdentifier: 'const {v8IntrinsicIdentifier} = types',
|
|
1170
|
+
validate: 'const {validate} = types',
|
|
1171
|
+
valueToNode: 'const {valueToNode} = types',
|
|
1172
|
+
variableDeclaration: 'const {variableDeclaration} = types',
|
|
1173
|
+
variableDeclarator: 'const {variableDeclarator} = types',
|
|
1174
|
+
variance: 'const {variance} = types',
|
|
1175
|
+
voidTypeAnnotation: 'const {voidTypeAnnotation} = types',
|
|
1176
|
+
whileStatement: 'const {whileStatement} = types',
|
|
1177
|
+
withStatement: 'const {withStatement} = types',
|
|
1178
|
+
yieldExpression: 'const {yieldExpression} = types',
|
|
1179
|
+
};
|