@typescript-deploys/pr-build 5.1.0-pr-52226-2 → 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.
@@ -4069,305 +4069,305 @@ declare namespace ts {
4069
4069
  CaretEqualsToken = 78,
4070
4070
  Identifier = 79,
4071
4071
  PrivateIdentifier = 80,
4072
- BreakKeyword = 81,
4073
- CaseKeyword = 82,
4074
- CatchKeyword = 83,
4075
- ClassKeyword = 84,
4076
- ConstKeyword = 85,
4077
- ContinueKeyword = 86,
4078
- DebuggerKeyword = 87,
4079
- DefaultKeyword = 88,
4080
- DeleteKeyword = 89,
4081
- DoKeyword = 90,
4082
- ElseKeyword = 91,
4083
- EnumKeyword = 92,
4084
- ExportKeyword = 93,
4085
- ExtendsKeyword = 94,
4086
- FalseKeyword = 95,
4087
- FinallyKeyword = 96,
4088
- ForKeyword = 97,
4089
- FunctionKeyword = 98,
4090
- IfKeyword = 99,
4091
- ImportKeyword = 100,
4092
- InKeyword = 101,
4093
- InstanceOfKeyword = 102,
4094
- NewKeyword = 103,
4095
- NullKeyword = 104,
4096
- ReturnKeyword = 105,
4097
- SuperKeyword = 106,
4098
- SwitchKeyword = 107,
4099
- ThisKeyword = 108,
4100
- ThrowKeyword = 109,
4101
- TrueKeyword = 110,
4102
- TryKeyword = 111,
4103
- TypeOfKeyword = 112,
4104
- VarKeyword = 113,
4105
- VoidKeyword = 114,
4106
- WhileKeyword = 115,
4107
- WithKeyword = 116,
4108
- ImplementsKeyword = 117,
4109
- InterfaceKeyword = 118,
4110
- LetKeyword = 119,
4111
- PackageKeyword = 120,
4112
- PrivateKeyword = 121,
4113
- ProtectedKeyword = 122,
4114
- PublicKeyword = 123,
4115
- StaticKeyword = 124,
4116
- YieldKeyword = 125,
4117
- AbstractKeyword = 126,
4118
- AccessorKeyword = 127,
4119
- AsKeyword = 128,
4120
- AssertsKeyword = 129,
4121
- AssertKeyword = 130,
4122
- AnyKeyword = 131,
4123
- AsyncKeyword = 132,
4124
- AwaitKeyword = 133,
4125
- BooleanKeyword = 134,
4126
- ConstructorKeyword = 135,
4127
- DeclareKeyword = 136,
4128
- GetKeyword = 137,
4129
- InferKeyword = 138,
4130
- IntrinsicKeyword = 139,
4131
- IsKeyword = 140,
4132
- KeyOfKeyword = 141,
4133
- ModuleKeyword = 142,
4134
- NamespaceKeyword = 143,
4135
- NeverKeyword = 144,
4136
- OutKeyword = 145,
4137
- ReadonlyKeyword = 146,
4138
- RequireKeyword = 147,
4139
- NumberKeyword = 148,
4140
- ObjectKeyword = 149,
4141
- SatisfiesKeyword = 150,
4142
- SetKeyword = 151,
4143
- StringKeyword = 152,
4144
- SymbolKeyword = 153,
4145
- TypeKeyword = 154,
4146
- UndefinedKeyword = 155,
4147
- UniqueKeyword = 156,
4148
- UnknownKeyword = 157,
4149
- FromKeyword = 158,
4150
- GlobalKeyword = 159,
4151
- BigIntKeyword = 160,
4152
- OverrideKeyword = 161,
4153
- OfKeyword = 162,
4154
- QualifiedName = 163,
4155
- ComputedPropertyName = 164,
4156
- TypeParameter = 165,
4157
- Parameter = 166,
4158
- Decorator = 167,
4159
- PropertySignature = 168,
4160
- PropertyDeclaration = 169,
4161
- MethodSignature = 170,
4162
- MethodDeclaration = 171,
4163
- ClassStaticBlockDeclaration = 172,
4164
- Constructor = 173,
4165
- GetAccessor = 174,
4166
- SetAccessor = 175,
4167
- CallSignature = 176,
4168
- ConstructSignature = 177,
4169
- IndexSignature = 178,
4170
- TypePredicate = 179,
4171
- TypeReference = 180,
4172
- FunctionType = 181,
4173
- ConstructorType = 182,
4174
- TypeQuery = 183,
4175
- TypeLiteral = 184,
4176
- ArrayType = 185,
4177
- TupleType = 186,
4178
- OptionalType = 187,
4179
- RestType = 188,
4180
- UnionType = 189,
4181
- IntersectionType = 190,
4182
- ConditionalType = 191,
4183
- InferType = 192,
4184
- ParenthesizedType = 193,
4185
- ThisType = 194,
4186
- TypeOperator = 195,
4187
- IndexedAccessType = 196,
4188
- MappedType = 197,
4189
- LiteralType = 198,
4190
- NamedTupleMember = 199,
4191
- TemplateLiteralType = 200,
4192
- TemplateLiteralTypeSpan = 201,
4193
- ImportType = 202,
4194
- ObjectBindingPattern = 203,
4195
- ArrayBindingPattern = 204,
4196
- BindingElement = 205,
4197
- ArrayLiteralExpression = 206,
4198
- ObjectLiteralExpression = 207,
4199
- PropertyAccessExpression = 208,
4200
- ElementAccessExpression = 209,
4201
- CallExpression = 210,
4202
- NewExpression = 211,
4203
- TaggedTemplateExpression = 212,
4204
- TypeAssertionExpression = 213,
4205
- ParenthesizedExpression = 214,
4206
- FunctionExpression = 215,
4207
- ArrowFunction = 216,
4208
- DeleteExpression = 217,
4209
- TypeOfExpression = 218,
4210
- VoidExpression = 219,
4211
- AwaitExpression = 220,
4212
- PrefixUnaryExpression = 221,
4213
- PostfixUnaryExpression = 222,
4214
- BinaryExpression = 223,
4215
- ConditionalExpression = 224,
4216
- TemplateExpression = 225,
4217
- YieldExpression = 226,
4218
- SpreadElement = 227,
4219
- ClassExpression = 228,
4220
- OmittedExpression = 229,
4221
- ExpressionWithTypeArguments = 230,
4222
- AsExpression = 231,
4223
- NonNullExpression = 232,
4224
- MetaProperty = 233,
4225
- SyntheticExpression = 234,
4226
- SatisfiesExpression = 235,
4227
- TemplateSpan = 236,
4228
- SemicolonClassElement = 237,
4229
- Block = 238,
4230
- EmptyStatement = 239,
4231
- VariableStatement = 240,
4232
- ExpressionStatement = 241,
4233
- IfStatement = 242,
4234
- DoStatement = 243,
4235
- WhileStatement = 244,
4236
- ForStatement = 245,
4237
- ForInStatement = 246,
4238
- ForOfStatement = 247,
4239
- ContinueStatement = 248,
4240
- BreakStatement = 249,
4241
- ReturnStatement = 250,
4242
- WithStatement = 251,
4243
- SwitchStatement = 252,
4244
- LabeledStatement = 253,
4245
- ThrowStatement = 254,
4246
- TryStatement = 255,
4247
- DebuggerStatement = 256,
4248
- VariableDeclaration = 257,
4249
- VariableDeclarationList = 258,
4250
- FunctionDeclaration = 259,
4251
- ClassDeclaration = 260,
4252
- InterfaceDeclaration = 261,
4253
- TypeAliasDeclaration = 262,
4254
- EnumDeclaration = 263,
4255
- ModuleDeclaration = 264,
4256
- ModuleBlock = 265,
4257
- CaseBlock = 266,
4258
- NamespaceExportDeclaration = 267,
4259
- ImportEqualsDeclaration = 268,
4260
- ImportDeclaration = 269,
4261
- ImportClause = 270,
4262
- NamespaceImport = 271,
4263
- NamedImports = 272,
4264
- ImportSpecifier = 273,
4265
- ExportAssignment = 274,
4266
- ExportDeclaration = 275,
4267
- NamedExports = 276,
4268
- NamespaceExport = 277,
4269
- ExportSpecifier = 278,
4270
- MissingDeclaration = 279,
4271
- ExternalModuleReference = 280,
4272
- JsxElement = 281,
4273
- JsxSelfClosingElement = 282,
4274
- JsxOpeningElement = 283,
4275
- JsxClosingElement = 284,
4276
- JsxFragment = 285,
4277
- JsxOpeningFragment = 286,
4278
- JsxClosingFragment = 287,
4279
- JsxAttribute = 288,
4280
- JsxAttributes = 289,
4281
- JsxSpreadAttribute = 290,
4282
- JsxExpression = 291,
4283
- CaseClause = 292,
4284
- DefaultClause = 293,
4285
- HeritageClause = 294,
4286
- CatchClause = 295,
4287
- AssertClause = 296,
4288
- AssertEntry = 297,
4289
- ImportTypeAssertionContainer = 298,
4290
- PropertyAssignment = 299,
4291
- ShorthandPropertyAssignment = 300,
4292
- SpreadAssignment = 301,
4293
- EnumMember = 302,
4294
- /** @deprecated */ UnparsedPrologue = 303,
4295
- /** @deprecated */ UnparsedPrepend = 304,
4296
- /** @deprecated */ UnparsedText = 305,
4297
- /** @deprecated */ UnparsedInternalText = 306,
4298
- /** @deprecated */ UnparsedSyntheticReference = 307,
4299
- SourceFile = 308,
4300
- Bundle = 309,
4301
- /** @deprecated */ UnparsedSource = 310,
4302
- /** @deprecated */ InputFiles = 311,
4303
- JSDocTypeExpression = 312,
4304
- JSDocNameReference = 313,
4305
- JSDocMemberName = 314,
4306
- JSDocAllType = 315,
4307
- JSDocUnknownType = 316,
4308
- JSDocNullableType = 317,
4309
- JSDocNonNullableType = 318,
4310
- JSDocOptionalType = 319,
4311
- JSDocFunctionType = 320,
4312
- JSDocVariadicType = 321,
4313
- JSDocNamepathType = 322,
4314
- JSDoc = 323,
4072
+ BreakKeyword = 82,
4073
+ CaseKeyword = 83,
4074
+ CatchKeyword = 84,
4075
+ ClassKeyword = 85,
4076
+ ConstKeyword = 86,
4077
+ ContinueKeyword = 87,
4078
+ DebuggerKeyword = 88,
4079
+ DefaultKeyword = 89,
4080
+ DeleteKeyword = 90,
4081
+ DoKeyword = 91,
4082
+ ElseKeyword = 92,
4083
+ EnumKeyword = 93,
4084
+ ExportKeyword = 94,
4085
+ ExtendsKeyword = 95,
4086
+ FalseKeyword = 96,
4087
+ FinallyKeyword = 97,
4088
+ ForKeyword = 98,
4089
+ FunctionKeyword = 99,
4090
+ IfKeyword = 100,
4091
+ ImportKeyword = 101,
4092
+ InKeyword = 102,
4093
+ InstanceOfKeyword = 103,
4094
+ NewKeyword = 104,
4095
+ NullKeyword = 105,
4096
+ ReturnKeyword = 106,
4097
+ SuperKeyword = 107,
4098
+ SwitchKeyword = 108,
4099
+ ThisKeyword = 109,
4100
+ ThrowKeyword = 110,
4101
+ TrueKeyword = 111,
4102
+ TryKeyword = 112,
4103
+ TypeOfKeyword = 113,
4104
+ VarKeyword = 114,
4105
+ VoidKeyword = 115,
4106
+ WhileKeyword = 116,
4107
+ WithKeyword = 117,
4108
+ ImplementsKeyword = 118,
4109
+ InterfaceKeyword = 119,
4110
+ LetKeyword = 120,
4111
+ PackageKeyword = 121,
4112
+ PrivateKeyword = 122,
4113
+ ProtectedKeyword = 123,
4114
+ PublicKeyword = 124,
4115
+ StaticKeyword = 125,
4116
+ YieldKeyword = 126,
4117
+ AbstractKeyword = 127,
4118
+ AccessorKeyword = 128,
4119
+ AsKeyword = 129,
4120
+ AssertsKeyword = 130,
4121
+ AssertKeyword = 131,
4122
+ AnyKeyword = 132,
4123
+ AsyncKeyword = 133,
4124
+ AwaitKeyword = 134,
4125
+ BooleanKeyword = 135,
4126
+ ConstructorKeyword = 136,
4127
+ DeclareKeyword = 137,
4128
+ GetKeyword = 138,
4129
+ InferKeyword = 139,
4130
+ IntrinsicKeyword = 140,
4131
+ IsKeyword = 141,
4132
+ KeyOfKeyword = 142,
4133
+ ModuleKeyword = 143,
4134
+ NamespaceKeyword = 144,
4135
+ NeverKeyword = 145,
4136
+ OutKeyword = 146,
4137
+ ReadonlyKeyword = 147,
4138
+ RequireKeyword = 148,
4139
+ NumberKeyword = 149,
4140
+ ObjectKeyword = 150,
4141
+ SatisfiesKeyword = 151,
4142
+ SetKeyword = 152,
4143
+ StringKeyword = 153,
4144
+ SymbolKeyword = 154,
4145
+ TypeKeyword = 155,
4146
+ UndefinedKeyword = 156,
4147
+ UniqueKeyword = 157,
4148
+ UnknownKeyword = 158,
4149
+ FromKeyword = 159,
4150
+ GlobalKeyword = 160,
4151
+ BigIntKeyword = 161,
4152
+ OverrideKeyword = 162,
4153
+ OfKeyword = 163,
4154
+ QualifiedName = 164,
4155
+ ComputedPropertyName = 165,
4156
+ TypeParameter = 166,
4157
+ Parameter = 167,
4158
+ Decorator = 168,
4159
+ PropertySignature = 169,
4160
+ PropertyDeclaration = 170,
4161
+ MethodSignature = 171,
4162
+ MethodDeclaration = 172,
4163
+ ClassStaticBlockDeclaration = 173,
4164
+ Constructor = 174,
4165
+ GetAccessor = 175,
4166
+ SetAccessor = 176,
4167
+ CallSignature = 177,
4168
+ ConstructSignature = 178,
4169
+ IndexSignature = 179,
4170
+ TypePredicate = 180,
4171
+ TypeReference = 181,
4172
+ FunctionType = 182,
4173
+ ConstructorType = 183,
4174
+ TypeQuery = 184,
4175
+ TypeLiteral = 185,
4176
+ ArrayType = 186,
4177
+ TupleType = 187,
4178
+ OptionalType = 188,
4179
+ RestType = 189,
4180
+ UnionType = 190,
4181
+ IntersectionType = 191,
4182
+ ConditionalType = 192,
4183
+ InferType = 193,
4184
+ ParenthesizedType = 194,
4185
+ ThisType = 195,
4186
+ TypeOperator = 196,
4187
+ IndexedAccessType = 197,
4188
+ MappedType = 198,
4189
+ LiteralType = 199,
4190
+ NamedTupleMember = 200,
4191
+ TemplateLiteralType = 201,
4192
+ TemplateLiteralTypeSpan = 202,
4193
+ ImportType = 203,
4194
+ ObjectBindingPattern = 204,
4195
+ ArrayBindingPattern = 205,
4196
+ BindingElement = 206,
4197
+ ArrayLiteralExpression = 207,
4198
+ ObjectLiteralExpression = 208,
4199
+ PropertyAccessExpression = 209,
4200
+ ElementAccessExpression = 210,
4201
+ CallExpression = 211,
4202
+ NewExpression = 212,
4203
+ TaggedTemplateExpression = 213,
4204
+ TypeAssertionExpression = 214,
4205
+ ParenthesizedExpression = 215,
4206
+ FunctionExpression = 216,
4207
+ ArrowFunction = 217,
4208
+ DeleteExpression = 218,
4209
+ TypeOfExpression = 219,
4210
+ VoidExpression = 220,
4211
+ AwaitExpression = 221,
4212
+ PrefixUnaryExpression = 222,
4213
+ PostfixUnaryExpression = 223,
4214
+ BinaryExpression = 224,
4215
+ ConditionalExpression = 225,
4216
+ TemplateExpression = 226,
4217
+ YieldExpression = 227,
4218
+ SpreadElement = 228,
4219
+ ClassExpression = 229,
4220
+ OmittedExpression = 230,
4221
+ ExpressionWithTypeArguments = 231,
4222
+ AsExpression = 232,
4223
+ NonNullExpression = 233,
4224
+ MetaProperty = 234,
4225
+ SyntheticExpression = 235,
4226
+ SatisfiesExpression = 236,
4227
+ TemplateSpan = 237,
4228
+ SemicolonClassElement = 238,
4229
+ Block = 239,
4230
+ EmptyStatement = 240,
4231
+ VariableStatement = 241,
4232
+ ExpressionStatement = 242,
4233
+ IfStatement = 243,
4234
+ DoStatement = 244,
4235
+ WhileStatement = 245,
4236
+ ForStatement = 246,
4237
+ ForInStatement = 247,
4238
+ ForOfStatement = 248,
4239
+ ContinueStatement = 249,
4240
+ BreakStatement = 250,
4241
+ ReturnStatement = 251,
4242
+ WithStatement = 252,
4243
+ SwitchStatement = 253,
4244
+ LabeledStatement = 254,
4245
+ ThrowStatement = 255,
4246
+ TryStatement = 256,
4247
+ DebuggerStatement = 257,
4248
+ VariableDeclaration = 258,
4249
+ VariableDeclarationList = 259,
4250
+ FunctionDeclaration = 260,
4251
+ ClassDeclaration = 261,
4252
+ InterfaceDeclaration = 262,
4253
+ TypeAliasDeclaration = 263,
4254
+ EnumDeclaration = 264,
4255
+ ModuleDeclaration = 265,
4256
+ ModuleBlock = 266,
4257
+ CaseBlock = 267,
4258
+ NamespaceExportDeclaration = 268,
4259
+ ImportEqualsDeclaration = 269,
4260
+ ImportDeclaration = 270,
4261
+ ImportClause = 271,
4262
+ NamespaceImport = 272,
4263
+ NamedImports = 273,
4264
+ ImportSpecifier = 274,
4265
+ ExportAssignment = 275,
4266
+ ExportDeclaration = 276,
4267
+ NamedExports = 277,
4268
+ NamespaceExport = 278,
4269
+ ExportSpecifier = 279,
4270
+ MissingDeclaration = 280,
4271
+ ExternalModuleReference = 281,
4272
+ JsxElement = 282,
4273
+ JsxSelfClosingElement = 283,
4274
+ JsxOpeningElement = 284,
4275
+ JsxClosingElement = 285,
4276
+ JsxFragment = 286,
4277
+ JsxOpeningFragment = 287,
4278
+ JsxClosingFragment = 288,
4279
+ JsxAttribute = 289,
4280
+ JsxAttributes = 290,
4281
+ JsxSpreadAttribute = 291,
4282
+ JsxExpression = 292,
4283
+ CaseClause = 293,
4284
+ DefaultClause = 294,
4285
+ HeritageClause = 295,
4286
+ CatchClause = 296,
4287
+ AssertClause = 297,
4288
+ AssertEntry = 298,
4289
+ ImportTypeAssertionContainer = 299,
4290
+ PropertyAssignment = 300,
4291
+ ShorthandPropertyAssignment = 301,
4292
+ SpreadAssignment = 302,
4293
+ EnumMember = 303,
4294
+ /** @deprecated */ UnparsedPrologue = 304,
4295
+ /** @deprecated */ UnparsedPrepend = 305,
4296
+ /** @deprecated */ UnparsedText = 306,
4297
+ /** @deprecated */ UnparsedInternalText = 307,
4298
+ /** @deprecated */ UnparsedSyntheticReference = 308,
4299
+ SourceFile = 309,
4300
+ Bundle = 310,
4301
+ /** @deprecated */ UnparsedSource = 311,
4302
+ /** @deprecated */ InputFiles = 312,
4303
+ JSDocTypeExpression = 313,
4304
+ JSDocNameReference = 314,
4305
+ JSDocMemberName = 315,
4306
+ JSDocAllType = 316,
4307
+ JSDocUnknownType = 317,
4308
+ JSDocNullableType = 318,
4309
+ JSDocNonNullableType = 319,
4310
+ JSDocOptionalType = 320,
4311
+ JSDocFunctionType = 321,
4312
+ JSDocVariadicType = 322,
4313
+ JSDocNamepathType = 323,
4314
+ JSDoc = 324,
4315
4315
  /** @deprecated Use SyntaxKind.JSDoc */
4316
- JSDocComment = 323,
4317
- JSDocText = 324,
4318
- JSDocTypeLiteral = 325,
4319
- JSDocSignature = 326,
4320
- JSDocLink = 327,
4321
- JSDocLinkCode = 328,
4322
- JSDocLinkPlain = 329,
4323
- JSDocTag = 330,
4324
- JSDocAugmentsTag = 331,
4325
- JSDocImplementsTag = 332,
4326
- JSDocAuthorTag = 333,
4327
- JSDocDeprecatedTag = 334,
4328
- JSDocClassTag = 335,
4329
- JSDocPublicTag = 336,
4330
- JSDocPrivateTag = 337,
4331
- JSDocProtectedTag = 338,
4332
- JSDocReadonlyTag = 339,
4333
- JSDocOverrideTag = 340,
4334
- JSDocCallbackTag = 341,
4335
- JSDocOverloadTag = 342,
4336
- JSDocEnumTag = 343,
4337
- JSDocParameterTag = 344,
4338
- JSDocReturnTag = 345,
4339
- JSDocThisTag = 346,
4340
- JSDocTypeTag = 347,
4341
- JSDocTemplateTag = 348,
4342
- JSDocTypedefTag = 349,
4343
- JSDocSeeTag = 350,
4344
- JSDocPropertyTag = 351,
4345
- JSDocThrowsTag = 352,
4346
- JSDocSatisfiesTag = 353,
4347
- SyntaxList = 354,
4348
- NotEmittedStatement = 355,
4349
- PartiallyEmittedExpression = 356,
4350
- CommaListExpression = 357,
4351
- MergeDeclarationMarker = 358,
4352
- EndOfDeclarationMarker = 359,
4353
- SyntheticReferenceExpression = 360,
4354
- Count = 361,
4316
+ JSDocComment = 324,
4317
+ JSDocText = 325,
4318
+ JSDocTypeLiteral = 326,
4319
+ JSDocSignature = 327,
4320
+ JSDocLink = 328,
4321
+ JSDocLinkCode = 329,
4322
+ JSDocLinkPlain = 330,
4323
+ JSDocTag = 331,
4324
+ JSDocAugmentsTag = 332,
4325
+ JSDocImplementsTag = 333,
4326
+ JSDocAuthorTag = 334,
4327
+ JSDocDeprecatedTag = 335,
4328
+ JSDocClassTag = 336,
4329
+ JSDocPublicTag = 337,
4330
+ JSDocPrivateTag = 338,
4331
+ JSDocProtectedTag = 339,
4332
+ JSDocReadonlyTag = 340,
4333
+ JSDocOverrideTag = 341,
4334
+ JSDocCallbackTag = 342,
4335
+ JSDocOverloadTag = 343,
4336
+ JSDocEnumTag = 344,
4337
+ JSDocParameterTag = 345,
4338
+ JSDocReturnTag = 346,
4339
+ JSDocThisTag = 347,
4340
+ JSDocTypeTag = 348,
4341
+ JSDocTemplateTag = 349,
4342
+ JSDocTypedefTag = 350,
4343
+ JSDocSeeTag = 351,
4344
+ JSDocPropertyTag = 352,
4345
+ JSDocThrowsTag = 353,
4346
+ JSDocSatisfiesTag = 354,
4347
+ SyntaxList = 355,
4348
+ NotEmittedStatement = 356,
4349
+ PartiallyEmittedExpression = 357,
4350
+ CommaListExpression = 358,
4351
+ MergeDeclarationMarker = 359,
4352
+ EndOfDeclarationMarker = 360,
4353
+ SyntheticReferenceExpression = 361,
4354
+ Count = 362,
4355
4355
  FirstAssignment = 63,
4356
4356
  LastAssignment = 78,
4357
4357
  FirstCompoundAssignment = 64,
4358
4358
  LastCompoundAssignment = 78,
4359
- FirstReservedWord = 81,
4360
- LastReservedWord = 116,
4361
- FirstKeyword = 81,
4362
- LastKeyword = 162,
4363
- FirstFutureReservedWord = 117,
4364
- LastFutureReservedWord = 125,
4365
- FirstTypeNode = 179,
4366
- LastTypeNode = 202,
4359
+ FirstReservedWord = 82,
4360
+ LastReservedWord = 117,
4361
+ FirstKeyword = 82,
4362
+ LastKeyword = 163,
4363
+ FirstFutureReservedWord = 118,
4364
+ LastFutureReservedWord = 126,
4365
+ FirstTypeNode = 180,
4366
+ LastTypeNode = 203,
4367
4367
  FirstPunctuation = 18,
4368
4368
  LastPunctuation = 78,
4369
4369
  FirstToken = 0,
4370
- LastToken = 162,
4370
+ LastToken = 163,
4371
4371
  FirstTriviaToken = 2,
4372
4372
  LastTriviaToken = 7,
4373
4373
  FirstLiteralToken = 8,
@@ -4376,13 +4376,13 @@ declare namespace ts {
4376
4376
  LastTemplateToken = 17,
4377
4377
  FirstBinaryOperator = 29,
4378
4378
  LastBinaryOperator = 78,
4379
- FirstStatement = 240,
4380
- LastStatement = 256,
4381
- FirstNode = 163,
4382
- FirstJSDocNode = 312,
4383
- LastJSDocNode = 353,
4384
- FirstJSDocTagNode = 330,
4385
- LastJSDocTagNode = 353
4379
+ FirstStatement = 241,
4380
+ LastStatement = 257,
4381
+ FirstNode = 164,
4382
+ FirstJSDocNode = 313,
4383
+ LastJSDocNode = 354,
4384
+ FirstJSDocTagNode = 331,
4385
+ LastJSDocTagNode = 354
4386
4386
  }
4387
4387
  type TriviaSyntaxKind = SyntaxKind.SingleLineCommentTrivia | SyntaxKind.MultiLineCommentTrivia | SyntaxKind.NewLineTrivia | SyntaxKind.WhitespaceTrivia | SyntaxKind.ShebangTrivia | SyntaxKind.ConflictMarkerTrivia;
4388
4388
  type LiteralSyntaxKind = SyntaxKind.NumericLiteral | SyntaxKind.BigIntLiteral | SyntaxKind.StringLiteral | SyntaxKind.JsxText | SyntaxKind.JsxTextAllWhiteSpaces | SyntaxKind.RegularExpressionLiteral | SyntaxKind.NoSubstitutionTemplateLiteral;
@@ -6369,6 +6369,40 @@ declare namespace ts {
6369
6369
  getApparentType(type: Type): Type;
6370
6370
  getBaseConstraintOfType(type: Type): Type | undefined;
6371
6371
  getDefaultFromTypeParameter(type: Type): Type | undefined;
6372
+ /**
6373
+ * Gets the intrinsic `any` type. There are multiple types that act as `any` used internally in the compiler,
6374
+ * so the type returned by this function should not be used in equality checks to determine if another type
6375
+ * is `any`. Instead, use `type.flags & TypeFlags.Any`.
6376
+ */
6377
+ getAnyType(): Type;
6378
+ getStringType(): Type;
6379
+ getStringLiteralType(value: string): StringLiteralType;
6380
+ getNumberType(): Type;
6381
+ getNumberLiteralType(value: number): NumberLiteralType;
6382
+ getBigIntType(): Type;
6383
+ getBooleanType(): Type;
6384
+ getFalseType(): Type;
6385
+ getTrueType(): Type;
6386
+ getVoidType(): Type;
6387
+ /**
6388
+ * Gets the intrinsic `undefined` type. There are multiple types that act as `undefined` used internally in the compiler
6389
+ * depending on compiler options, so the type returned by this function should not be used in equality checks to determine
6390
+ * if another type is `undefined`. Instead, use `type.flags & TypeFlags.Undefined`.
6391
+ */
6392
+ getUndefinedType(): Type;
6393
+ /**
6394
+ * Gets the intrinsic `null` type. There are multiple types that act as `null` used internally in the compiler,
6395
+ * so the type returned by this function should not be used in equality checks to determine if another type
6396
+ * is `null`. Instead, use `type.flags & TypeFlags.Null`.
6397
+ */
6398
+ getNullType(): Type;
6399
+ getESSymbolType(): Type;
6400
+ /**
6401
+ * Gets the intrinsic `never` type. There are multiple types that act as `never` used internally in the compiler,
6402
+ * so the type returned by this function should not be used in equality checks to determine if another type
6403
+ * is `never`. Instead, use `type.flags & TypeFlags.Never`.
6404
+ */
6405
+ getNeverType(): Type;
6372
6406
  /**
6373
6407
  * True if this type is the `Array` or `ReadonlyArray` type from lib.d.ts.
6374
6408
  * This function will _not_ return true if passed a type which
@@ -6957,6 +6991,12 @@ declare namespace ts {
6957
6991
  }
6958
6992
  enum ModuleResolutionKind {
6959
6993
  Classic = 1,
6994
+ /**
6995
+ * @deprecated
6996
+ * `NodeJs` was renamed to `Node10` to better reflect the version of Node that it targets.
6997
+ * Use the new name or consider switching to a modern module resolution target.
6998
+ */
6999
+ NodeJs = 2,
6960
7000
  Node10 = 2,
6961
7001
  Node16 = 3,
6962
7002
  NodeNext = 99,
@@ -8323,9 +8363,15 @@ declare namespace ts {
8323
8363
  function createScanner(languageVersion: ScriptTarget, skipTrivia: boolean, languageVariant?: LanguageVariant, textInitial?: string, onError?: ErrorCallback, start?: number, length?: number): Scanner;
8324
8364
  type ErrorCallback = (message: DiagnosticMessage, length: number) => void;
8325
8365
  interface Scanner {
8366
+ /** @deprecated use {@link getTokenFullStart} */
8326
8367
  getStartPos(): number;
8327
8368
  getToken(): SyntaxKind;
8369
+ getTokenFullStart(): number;
8370
+ getTokenStart(): number;
8371
+ getTokenEnd(): number;
8372
+ /** @deprecated use {@link getTokenEnd} */
8328
8373
  getTextPos(): number;
8374
+ /** @deprecated use {@link getTokenStart} */
8329
8375
  getTokenPos(): number;
8330
8376
  getTokenText(): string;
8331
8377
  getTokenValue(): string;
@@ -8356,7 +8402,9 @@ declare namespace ts {
8356
8402
  setOnError(onError: ErrorCallback | undefined): void;
8357
8403
  setScriptTarget(scriptTarget: ScriptTarget): void;
8358
8404
  setLanguageVariant(variant: LanguageVariant): void;
8405
+ /** @deprecated use {@link resetTokenState} */
8359
8406
  setTextPos(textPos: number): void;
8407
+ resetTokenState(pos: number): void;
8360
8408
  lookAhead<T>(callback: () => T): T;
8361
8409
  scanRange<T>(start: number, length: number, callback: () => T): T;
8362
8410
  tryScan<T>(callback: () => T): T;