@typescript-deploys/pr-build 5.1.0-pr-52845-10 → 5.1.0-pr-53134-21

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.
@@ -126,305 +126,305 @@ declare namespace ts {
126
126
  CaretEqualsToken = 78,
127
127
  Identifier = 79,
128
128
  PrivateIdentifier = 80,
129
- BreakKeyword = 81,
130
- CaseKeyword = 82,
131
- CatchKeyword = 83,
132
- ClassKeyword = 84,
133
- ConstKeyword = 85,
134
- ContinueKeyword = 86,
135
- DebuggerKeyword = 87,
136
- DefaultKeyword = 88,
137
- DeleteKeyword = 89,
138
- DoKeyword = 90,
139
- ElseKeyword = 91,
140
- EnumKeyword = 92,
141
- ExportKeyword = 93,
142
- ExtendsKeyword = 94,
143
- FalseKeyword = 95,
144
- FinallyKeyword = 96,
145
- ForKeyword = 97,
146
- FunctionKeyword = 98,
147
- IfKeyword = 99,
148
- ImportKeyword = 100,
149
- InKeyword = 101,
150
- InstanceOfKeyword = 102,
151
- NewKeyword = 103,
152
- NullKeyword = 104,
153
- ReturnKeyword = 105,
154
- SuperKeyword = 106,
155
- SwitchKeyword = 107,
156
- ThisKeyword = 108,
157
- ThrowKeyword = 109,
158
- TrueKeyword = 110,
159
- TryKeyword = 111,
160
- TypeOfKeyword = 112,
161
- VarKeyword = 113,
162
- VoidKeyword = 114,
163
- WhileKeyword = 115,
164
- WithKeyword = 116,
165
- ImplementsKeyword = 117,
166
- InterfaceKeyword = 118,
167
- LetKeyword = 119,
168
- PackageKeyword = 120,
169
- PrivateKeyword = 121,
170
- ProtectedKeyword = 122,
171
- PublicKeyword = 123,
172
- StaticKeyword = 124,
173
- YieldKeyword = 125,
174
- AbstractKeyword = 126,
175
- AccessorKeyword = 127,
176
- AsKeyword = 128,
177
- AssertsKeyword = 129,
178
- AssertKeyword = 130,
179
- AnyKeyword = 131,
180
- AsyncKeyword = 132,
181
- AwaitKeyword = 133,
182
- BooleanKeyword = 134,
183
- ConstructorKeyword = 135,
184
- DeclareKeyword = 136,
185
- GetKeyword = 137,
186
- InferKeyword = 138,
187
- IntrinsicKeyword = 139,
188
- IsKeyword = 140,
189
- KeyOfKeyword = 141,
190
- ModuleKeyword = 142,
191
- NamespaceKeyword = 143,
192
- NeverKeyword = 144,
193
- OutKeyword = 145,
194
- ReadonlyKeyword = 146,
195
- RequireKeyword = 147,
196
- NumberKeyword = 148,
197
- ObjectKeyword = 149,
198
- SatisfiesKeyword = 150,
199
- SetKeyword = 151,
200
- StringKeyword = 152,
201
- SymbolKeyword = 153,
202
- TypeKeyword = 154,
203
- UndefinedKeyword = 155,
204
- UniqueKeyword = 156,
205
- UnknownKeyword = 157,
206
- FromKeyword = 158,
207
- GlobalKeyword = 159,
208
- BigIntKeyword = 160,
209
- OverrideKeyword = 161,
210
- OfKeyword = 162,
211
- QualifiedName = 163,
212
- ComputedPropertyName = 164,
213
- TypeParameter = 165,
214
- Parameter = 166,
215
- Decorator = 167,
216
- PropertySignature = 168,
217
- PropertyDeclaration = 169,
218
- MethodSignature = 170,
219
- MethodDeclaration = 171,
220
- ClassStaticBlockDeclaration = 172,
221
- Constructor = 173,
222
- GetAccessor = 174,
223
- SetAccessor = 175,
224
- CallSignature = 176,
225
- ConstructSignature = 177,
226
- IndexSignature = 178,
227
- TypePredicate = 179,
228
- TypeReference = 180,
229
- FunctionType = 181,
230
- ConstructorType = 182,
231
- TypeQuery = 183,
232
- TypeLiteral = 184,
233
- ArrayType = 185,
234
- TupleType = 186,
235
- OptionalType = 187,
236
- RestType = 188,
237
- UnionType = 189,
238
- IntersectionType = 190,
239
- ConditionalType = 191,
240
- InferType = 192,
241
- ParenthesizedType = 193,
242
- ThisType = 194,
243
- TypeOperator = 195,
244
- IndexedAccessType = 196,
245
- MappedType = 197,
246
- LiteralType = 198,
247
- NamedTupleMember = 199,
248
- TemplateLiteralType = 200,
249
- TemplateLiteralTypeSpan = 201,
250
- ImportType = 202,
251
- ObjectBindingPattern = 203,
252
- ArrayBindingPattern = 204,
253
- BindingElement = 205,
254
- ArrayLiteralExpression = 206,
255
- ObjectLiteralExpression = 207,
256
- PropertyAccessExpression = 208,
257
- ElementAccessExpression = 209,
258
- CallExpression = 210,
259
- NewExpression = 211,
260
- TaggedTemplateExpression = 212,
261
- TypeAssertionExpression = 213,
262
- ParenthesizedExpression = 214,
263
- FunctionExpression = 215,
264
- ArrowFunction = 216,
265
- DeleteExpression = 217,
266
- TypeOfExpression = 218,
267
- VoidExpression = 219,
268
- AwaitExpression = 220,
269
- PrefixUnaryExpression = 221,
270
- PostfixUnaryExpression = 222,
271
- BinaryExpression = 223,
272
- ConditionalExpression = 224,
273
- TemplateExpression = 225,
274
- YieldExpression = 226,
275
- SpreadElement = 227,
276
- ClassExpression = 228,
277
- OmittedExpression = 229,
278
- ExpressionWithTypeArguments = 230,
279
- AsExpression = 231,
280
- NonNullExpression = 232,
281
- MetaProperty = 233,
282
- SyntheticExpression = 234,
283
- SatisfiesExpression = 235,
284
- TemplateSpan = 236,
285
- SemicolonClassElement = 237,
286
- Block = 238,
287
- EmptyStatement = 239,
288
- VariableStatement = 240,
289
- ExpressionStatement = 241,
290
- IfStatement = 242,
291
- DoStatement = 243,
292
- WhileStatement = 244,
293
- ForStatement = 245,
294
- ForInStatement = 246,
295
- ForOfStatement = 247,
296
- ContinueStatement = 248,
297
- BreakStatement = 249,
298
- ReturnStatement = 250,
299
- WithStatement = 251,
300
- SwitchStatement = 252,
301
- LabeledStatement = 253,
302
- ThrowStatement = 254,
303
- TryStatement = 255,
304
- DebuggerStatement = 256,
305
- VariableDeclaration = 257,
306
- VariableDeclarationList = 258,
307
- FunctionDeclaration = 259,
308
- ClassDeclaration = 260,
309
- InterfaceDeclaration = 261,
310
- TypeAliasDeclaration = 262,
311
- EnumDeclaration = 263,
312
- ModuleDeclaration = 264,
313
- ModuleBlock = 265,
314
- CaseBlock = 266,
315
- NamespaceExportDeclaration = 267,
316
- ImportEqualsDeclaration = 268,
317
- ImportDeclaration = 269,
318
- ImportClause = 270,
319
- NamespaceImport = 271,
320
- NamedImports = 272,
321
- ImportSpecifier = 273,
322
- ExportAssignment = 274,
323
- ExportDeclaration = 275,
324
- NamedExports = 276,
325
- NamespaceExport = 277,
326
- ExportSpecifier = 278,
327
- MissingDeclaration = 279,
328
- ExternalModuleReference = 280,
329
- JsxElement = 281,
330
- JsxSelfClosingElement = 282,
331
- JsxOpeningElement = 283,
332
- JsxClosingElement = 284,
333
- JsxFragment = 285,
334
- JsxOpeningFragment = 286,
335
- JsxClosingFragment = 287,
336
- JsxAttribute = 288,
337
- JsxAttributes = 289,
338
- JsxSpreadAttribute = 290,
339
- JsxExpression = 291,
340
- CaseClause = 292,
341
- DefaultClause = 293,
342
- HeritageClause = 294,
343
- CatchClause = 295,
344
- AssertClause = 296,
345
- AssertEntry = 297,
346
- ImportTypeAssertionContainer = 298,
347
- PropertyAssignment = 299,
348
- ShorthandPropertyAssignment = 300,
349
- SpreadAssignment = 301,
350
- EnumMember = 302,
351
- /** @deprecated */ UnparsedPrologue = 303,
352
- /** @deprecated */ UnparsedPrepend = 304,
353
- /** @deprecated */ UnparsedText = 305,
354
- /** @deprecated */ UnparsedInternalText = 306,
355
- /** @deprecated */ UnparsedSyntheticReference = 307,
356
- SourceFile = 308,
357
- Bundle = 309,
358
- /** @deprecated */ UnparsedSource = 310,
359
- /** @deprecated */ InputFiles = 311,
360
- JSDocTypeExpression = 312,
361
- JSDocNameReference = 313,
362
- JSDocMemberName = 314,
363
- JSDocAllType = 315,
364
- JSDocUnknownType = 316,
365
- JSDocNullableType = 317,
366
- JSDocNonNullableType = 318,
367
- JSDocOptionalType = 319,
368
- JSDocFunctionType = 320,
369
- JSDocVariadicType = 321,
370
- JSDocNamepathType = 322,
371
- JSDoc = 323,
129
+ BreakKeyword = 82,
130
+ CaseKeyword = 83,
131
+ CatchKeyword = 84,
132
+ ClassKeyword = 85,
133
+ ConstKeyword = 86,
134
+ ContinueKeyword = 87,
135
+ DebuggerKeyword = 88,
136
+ DefaultKeyword = 89,
137
+ DeleteKeyword = 90,
138
+ DoKeyword = 91,
139
+ ElseKeyword = 92,
140
+ EnumKeyword = 93,
141
+ ExportKeyword = 94,
142
+ ExtendsKeyword = 95,
143
+ FalseKeyword = 96,
144
+ FinallyKeyword = 97,
145
+ ForKeyword = 98,
146
+ FunctionKeyword = 99,
147
+ IfKeyword = 100,
148
+ ImportKeyword = 101,
149
+ InKeyword = 102,
150
+ InstanceOfKeyword = 103,
151
+ NewKeyword = 104,
152
+ NullKeyword = 105,
153
+ ReturnKeyword = 106,
154
+ SuperKeyword = 107,
155
+ SwitchKeyword = 108,
156
+ ThisKeyword = 109,
157
+ ThrowKeyword = 110,
158
+ TrueKeyword = 111,
159
+ TryKeyword = 112,
160
+ TypeOfKeyword = 113,
161
+ VarKeyword = 114,
162
+ VoidKeyword = 115,
163
+ WhileKeyword = 116,
164
+ WithKeyword = 117,
165
+ ImplementsKeyword = 118,
166
+ InterfaceKeyword = 119,
167
+ LetKeyword = 120,
168
+ PackageKeyword = 121,
169
+ PrivateKeyword = 122,
170
+ ProtectedKeyword = 123,
171
+ PublicKeyword = 124,
172
+ StaticKeyword = 125,
173
+ YieldKeyword = 126,
174
+ AbstractKeyword = 127,
175
+ AccessorKeyword = 128,
176
+ AsKeyword = 129,
177
+ AssertsKeyword = 130,
178
+ AssertKeyword = 131,
179
+ AnyKeyword = 132,
180
+ AsyncKeyword = 133,
181
+ AwaitKeyword = 134,
182
+ BooleanKeyword = 135,
183
+ ConstructorKeyword = 136,
184
+ DeclareKeyword = 137,
185
+ GetKeyword = 138,
186
+ InferKeyword = 139,
187
+ IntrinsicKeyword = 140,
188
+ IsKeyword = 141,
189
+ KeyOfKeyword = 142,
190
+ ModuleKeyword = 143,
191
+ NamespaceKeyword = 144,
192
+ NeverKeyword = 145,
193
+ OutKeyword = 146,
194
+ ReadonlyKeyword = 147,
195
+ RequireKeyword = 148,
196
+ NumberKeyword = 149,
197
+ ObjectKeyword = 150,
198
+ SatisfiesKeyword = 151,
199
+ SetKeyword = 152,
200
+ StringKeyword = 153,
201
+ SymbolKeyword = 154,
202
+ TypeKeyword = 155,
203
+ UndefinedKeyword = 156,
204
+ UniqueKeyword = 157,
205
+ UnknownKeyword = 158,
206
+ FromKeyword = 159,
207
+ GlobalKeyword = 160,
208
+ BigIntKeyword = 161,
209
+ OverrideKeyword = 162,
210
+ OfKeyword = 163,
211
+ QualifiedName = 164,
212
+ ComputedPropertyName = 165,
213
+ TypeParameter = 166,
214
+ Parameter = 167,
215
+ Decorator = 168,
216
+ PropertySignature = 169,
217
+ PropertyDeclaration = 170,
218
+ MethodSignature = 171,
219
+ MethodDeclaration = 172,
220
+ ClassStaticBlockDeclaration = 173,
221
+ Constructor = 174,
222
+ GetAccessor = 175,
223
+ SetAccessor = 176,
224
+ CallSignature = 177,
225
+ ConstructSignature = 178,
226
+ IndexSignature = 179,
227
+ TypePredicate = 180,
228
+ TypeReference = 181,
229
+ FunctionType = 182,
230
+ ConstructorType = 183,
231
+ TypeQuery = 184,
232
+ TypeLiteral = 185,
233
+ ArrayType = 186,
234
+ TupleType = 187,
235
+ OptionalType = 188,
236
+ RestType = 189,
237
+ UnionType = 190,
238
+ IntersectionType = 191,
239
+ ConditionalType = 192,
240
+ InferType = 193,
241
+ ParenthesizedType = 194,
242
+ ThisType = 195,
243
+ TypeOperator = 196,
244
+ IndexedAccessType = 197,
245
+ MappedType = 198,
246
+ LiteralType = 199,
247
+ NamedTupleMember = 200,
248
+ TemplateLiteralType = 201,
249
+ TemplateLiteralTypeSpan = 202,
250
+ ImportType = 203,
251
+ ObjectBindingPattern = 204,
252
+ ArrayBindingPattern = 205,
253
+ BindingElement = 206,
254
+ ArrayLiteralExpression = 207,
255
+ ObjectLiteralExpression = 208,
256
+ PropertyAccessExpression = 209,
257
+ ElementAccessExpression = 210,
258
+ CallExpression = 211,
259
+ NewExpression = 212,
260
+ TaggedTemplateExpression = 213,
261
+ TypeAssertionExpression = 214,
262
+ ParenthesizedExpression = 215,
263
+ FunctionExpression = 216,
264
+ ArrowFunction = 217,
265
+ DeleteExpression = 218,
266
+ TypeOfExpression = 219,
267
+ VoidExpression = 220,
268
+ AwaitExpression = 221,
269
+ PrefixUnaryExpression = 222,
270
+ PostfixUnaryExpression = 223,
271
+ BinaryExpression = 224,
272
+ ConditionalExpression = 225,
273
+ TemplateExpression = 226,
274
+ YieldExpression = 227,
275
+ SpreadElement = 228,
276
+ ClassExpression = 229,
277
+ OmittedExpression = 230,
278
+ ExpressionWithTypeArguments = 231,
279
+ AsExpression = 232,
280
+ NonNullExpression = 233,
281
+ MetaProperty = 234,
282
+ SyntheticExpression = 235,
283
+ SatisfiesExpression = 236,
284
+ TemplateSpan = 237,
285
+ SemicolonClassElement = 238,
286
+ Block = 239,
287
+ EmptyStatement = 240,
288
+ VariableStatement = 241,
289
+ ExpressionStatement = 242,
290
+ IfStatement = 243,
291
+ DoStatement = 244,
292
+ WhileStatement = 245,
293
+ ForStatement = 246,
294
+ ForInStatement = 247,
295
+ ForOfStatement = 248,
296
+ ContinueStatement = 249,
297
+ BreakStatement = 250,
298
+ ReturnStatement = 251,
299
+ WithStatement = 252,
300
+ SwitchStatement = 253,
301
+ LabeledStatement = 254,
302
+ ThrowStatement = 255,
303
+ TryStatement = 256,
304
+ DebuggerStatement = 257,
305
+ VariableDeclaration = 258,
306
+ VariableDeclarationList = 259,
307
+ FunctionDeclaration = 260,
308
+ ClassDeclaration = 261,
309
+ InterfaceDeclaration = 262,
310
+ TypeAliasDeclaration = 263,
311
+ EnumDeclaration = 264,
312
+ ModuleDeclaration = 265,
313
+ ModuleBlock = 266,
314
+ CaseBlock = 267,
315
+ NamespaceExportDeclaration = 268,
316
+ ImportEqualsDeclaration = 269,
317
+ ImportDeclaration = 270,
318
+ ImportClause = 271,
319
+ NamespaceImport = 272,
320
+ NamedImports = 273,
321
+ ImportSpecifier = 274,
322
+ ExportAssignment = 275,
323
+ ExportDeclaration = 276,
324
+ NamedExports = 277,
325
+ NamespaceExport = 278,
326
+ ExportSpecifier = 279,
327
+ MissingDeclaration = 280,
328
+ ExternalModuleReference = 281,
329
+ JsxElement = 282,
330
+ JsxSelfClosingElement = 283,
331
+ JsxOpeningElement = 284,
332
+ JsxClosingElement = 285,
333
+ JsxFragment = 286,
334
+ JsxOpeningFragment = 287,
335
+ JsxClosingFragment = 288,
336
+ JsxAttribute = 289,
337
+ JsxAttributes = 290,
338
+ JsxSpreadAttribute = 291,
339
+ JsxExpression = 292,
340
+ CaseClause = 293,
341
+ DefaultClause = 294,
342
+ HeritageClause = 295,
343
+ CatchClause = 296,
344
+ AssertClause = 297,
345
+ AssertEntry = 298,
346
+ ImportTypeAssertionContainer = 299,
347
+ PropertyAssignment = 300,
348
+ ShorthandPropertyAssignment = 301,
349
+ SpreadAssignment = 302,
350
+ EnumMember = 303,
351
+ /** @deprecated */ UnparsedPrologue = 304,
352
+ /** @deprecated */ UnparsedPrepend = 305,
353
+ /** @deprecated */ UnparsedText = 306,
354
+ /** @deprecated */ UnparsedInternalText = 307,
355
+ /** @deprecated */ UnparsedSyntheticReference = 308,
356
+ SourceFile = 309,
357
+ Bundle = 310,
358
+ /** @deprecated */ UnparsedSource = 311,
359
+ /** @deprecated */ InputFiles = 312,
360
+ JSDocTypeExpression = 313,
361
+ JSDocNameReference = 314,
362
+ JSDocMemberName = 315,
363
+ JSDocAllType = 316,
364
+ JSDocUnknownType = 317,
365
+ JSDocNullableType = 318,
366
+ JSDocNonNullableType = 319,
367
+ JSDocOptionalType = 320,
368
+ JSDocFunctionType = 321,
369
+ JSDocVariadicType = 322,
370
+ JSDocNamepathType = 323,
371
+ JSDoc = 324,
372
372
  /** @deprecated Use SyntaxKind.JSDoc */
373
- JSDocComment = 323,
374
- JSDocText = 324,
375
- JSDocTypeLiteral = 325,
376
- JSDocSignature = 326,
377
- JSDocLink = 327,
378
- JSDocLinkCode = 328,
379
- JSDocLinkPlain = 329,
380
- JSDocTag = 330,
381
- JSDocAugmentsTag = 331,
382
- JSDocImplementsTag = 332,
383
- JSDocAuthorTag = 333,
384
- JSDocDeprecatedTag = 334,
385
- JSDocClassTag = 335,
386
- JSDocPublicTag = 336,
387
- JSDocPrivateTag = 337,
388
- JSDocProtectedTag = 338,
389
- JSDocReadonlyTag = 339,
390
- JSDocOverrideTag = 340,
391
- JSDocCallbackTag = 341,
392
- JSDocOverloadTag = 342,
393
- JSDocEnumTag = 343,
394
- JSDocParameterTag = 344,
395
- JSDocReturnTag = 345,
396
- JSDocThisTag = 346,
397
- JSDocTypeTag = 347,
398
- JSDocTemplateTag = 348,
399
- JSDocTypedefTag = 349,
400
- JSDocSeeTag = 350,
401
- JSDocPropertyTag = 351,
402
- JSDocThrowsTag = 352,
403
- JSDocSatisfiesTag = 353,
404
- SyntaxList = 354,
405
- NotEmittedStatement = 355,
406
- PartiallyEmittedExpression = 356,
407
- CommaListExpression = 357,
408
- MergeDeclarationMarker = 358,
409
- EndOfDeclarationMarker = 359,
410
- SyntheticReferenceExpression = 360,
411
- Count = 361,
373
+ JSDocComment = 324,
374
+ JSDocText = 325,
375
+ JSDocTypeLiteral = 326,
376
+ JSDocSignature = 327,
377
+ JSDocLink = 328,
378
+ JSDocLinkCode = 329,
379
+ JSDocLinkPlain = 330,
380
+ JSDocTag = 331,
381
+ JSDocAugmentsTag = 332,
382
+ JSDocImplementsTag = 333,
383
+ JSDocAuthorTag = 334,
384
+ JSDocDeprecatedTag = 335,
385
+ JSDocClassTag = 336,
386
+ JSDocPublicTag = 337,
387
+ JSDocPrivateTag = 338,
388
+ JSDocProtectedTag = 339,
389
+ JSDocReadonlyTag = 340,
390
+ JSDocOverrideTag = 341,
391
+ JSDocCallbackTag = 342,
392
+ JSDocOverloadTag = 343,
393
+ JSDocEnumTag = 344,
394
+ JSDocParameterTag = 345,
395
+ JSDocReturnTag = 346,
396
+ JSDocThisTag = 347,
397
+ JSDocTypeTag = 348,
398
+ JSDocTemplateTag = 349,
399
+ JSDocTypedefTag = 350,
400
+ JSDocSeeTag = 351,
401
+ JSDocPropertyTag = 352,
402
+ JSDocThrowsTag = 353,
403
+ JSDocSatisfiesTag = 354,
404
+ SyntaxList = 355,
405
+ NotEmittedStatement = 356,
406
+ PartiallyEmittedExpression = 357,
407
+ CommaListExpression = 358,
408
+ MergeDeclarationMarker = 359,
409
+ EndOfDeclarationMarker = 360,
410
+ SyntheticReferenceExpression = 361,
411
+ Count = 362,
412
412
  FirstAssignment = 63,
413
413
  LastAssignment = 78,
414
414
  FirstCompoundAssignment = 64,
415
415
  LastCompoundAssignment = 78,
416
- FirstReservedWord = 81,
417
- LastReservedWord = 116,
418
- FirstKeyword = 81,
419
- LastKeyword = 162,
420
- FirstFutureReservedWord = 117,
421
- LastFutureReservedWord = 125,
422
- FirstTypeNode = 179,
423
- LastTypeNode = 202,
416
+ FirstReservedWord = 82,
417
+ LastReservedWord = 117,
418
+ FirstKeyword = 82,
419
+ LastKeyword = 163,
420
+ FirstFutureReservedWord = 118,
421
+ LastFutureReservedWord = 126,
422
+ FirstTypeNode = 180,
423
+ LastTypeNode = 203,
424
424
  FirstPunctuation = 18,
425
425
  LastPunctuation = 78,
426
426
  FirstToken = 0,
427
- LastToken = 162,
427
+ LastToken = 163,
428
428
  FirstTriviaToken = 2,
429
429
  LastTriviaToken = 7,
430
430
  FirstLiteralToken = 8,
@@ -433,13 +433,13 @@ declare namespace ts {
433
433
  LastTemplateToken = 17,
434
434
  FirstBinaryOperator = 29,
435
435
  LastBinaryOperator = 78,
436
- FirstStatement = 240,
437
- LastStatement = 256,
438
- FirstNode = 163,
439
- FirstJSDocNode = 312,
440
- LastJSDocNode = 353,
441
- FirstJSDocTagNode = 330,
442
- LastJSDocTagNode = 353
436
+ FirstStatement = 241,
437
+ LastStatement = 257,
438
+ FirstNode = 164,
439
+ FirstJSDocNode = 313,
440
+ LastJSDocNode = 354,
441
+ FirstJSDocTagNode = 331,
442
+ LastJSDocTagNode = 354
443
443
  }
444
444
  type TriviaSyntaxKind = SyntaxKind.SingleLineCommentTrivia | SyntaxKind.MultiLineCommentTrivia | SyntaxKind.NewLineTrivia | SyntaxKind.WhitespaceTrivia | SyntaxKind.ShebangTrivia | SyntaxKind.ConflictMarkerTrivia;
445
445
  type LiteralSyntaxKind = SyntaxKind.NumericLiteral | SyntaxKind.BigIntLiteral | SyntaxKind.StringLiteral | SyntaxKind.JsxText | SyntaxKind.JsxTextAllWhiteSpaces | SyntaxKind.RegularExpressionLiteral | SyntaxKind.NoSubstitutionTemplateLiteral;