typescript 6.0.0-dev.20260206 → 6.0.0-dev.20260207

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.
@@ -2556,10 +2556,11 @@ declare namespace ts {
2556
2556
  ES2022 = "es2022",
2557
2557
  ES2023 = "es2023",
2558
2558
  ES2024 = "es2024",
2559
+ ES2025 = "es2025",
2559
2560
  ESNext = "esnext",
2560
2561
  JSON = "json",
2561
2562
  Latest = "esnext",
2562
- LatestStandard = "es2024",
2563
+ LatestStandard = "es2025",
2563
2564
  }
2564
2565
  }
2565
2566
  namespace typingsInstaller {
@@ -6593,53 +6594,53 @@ declare namespace ts {
6593
6594
  enum TypeFlags {
6594
6595
  Any = 1,
6595
6596
  Unknown = 2,
6596
- String = 4,
6597
- Number = 8,
6598
- Boolean = 16,
6599
- Enum = 32,
6600
- BigInt = 64,
6601
- StringLiteral = 128,
6602
- NumberLiteral = 256,
6603
- BooleanLiteral = 512,
6604
- EnumLiteral = 1024,
6605
- BigIntLiteral = 2048,
6606
- ESSymbol = 4096,
6607
- UniqueESSymbol = 8192,
6608
- Void = 16384,
6609
- Undefined = 32768,
6610
- Null = 65536,
6611
- Never = 131072,
6612
- TypeParameter = 262144,
6613
- Object = 524288,
6614
- Union = 1048576,
6615
- Intersection = 2097152,
6616
- Index = 4194304,
6617
- IndexedAccess = 8388608,
6618
- Conditional = 16777216,
6619
- Substitution = 33554432,
6620
- NonPrimitive = 67108864,
6621
- TemplateLiteral = 134217728,
6622
- StringMapping = 268435456,
6623
- Literal = 2944,
6624
- Unit = 109472,
6625
- Freshable = 2976,
6626
- StringOrNumberLiteral = 384,
6627
- PossiblyFalsy = 117724,
6628
- StringLike = 402653316,
6629
- NumberLike = 296,
6630
- BigIntLike = 2112,
6631
- BooleanLike = 528,
6632
- EnumLike = 1056,
6633
- ESSymbolLike = 12288,
6634
- VoidLike = 49152,
6635
- UnionOrIntersection = 3145728,
6636
- StructuredType = 3670016,
6637
- TypeVariable = 8650752,
6638
- InstantiableNonPrimitive = 58982400,
6639
- InstantiablePrimitive = 406847488,
6640
- Instantiable = 465829888,
6641
- StructuredOrInstantiable = 469499904,
6642
- Narrowable = 536624127,
6597
+ Undefined = 4,
6598
+ Null = 8,
6599
+ Void = 16,
6600
+ String = 32,
6601
+ Number = 64,
6602
+ BigInt = 128,
6603
+ Boolean = 256,
6604
+ ESSymbol = 512,
6605
+ StringLiteral = 1024,
6606
+ NumberLiteral = 2048,
6607
+ BigIntLiteral = 4096,
6608
+ BooleanLiteral = 8192,
6609
+ UniqueESSymbol = 16384,
6610
+ EnumLiteral = 32768,
6611
+ Enum = 65536,
6612
+ NonPrimitive = 131072,
6613
+ Never = 262144,
6614
+ TypeParameter = 524288,
6615
+ Object = 1048576,
6616
+ Index = 2097152,
6617
+ TemplateLiteral = 4194304,
6618
+ StringMapping = 8388608,
6619
+ Substitution = 16777216,
6620
+ IndexedAccess = 33554432,
6621
+ Conditional = 67108864,
6622
+ Union = 134217728,
6623
+ Intersection = 268435456,
6624
+ Literal = 15360,
6625
+ Unit = 97292,
6626
+ Freshable = 80896,
6627
+ StringOrNumberLiteral = 3072,
6628
+ PossiblyFalsy = 15868,
6629
+ StringLike = 12583968,
6630
+ NumberLike = 67648,
6631
+ BigIntLike = 4224,
6632
+ BooleanLike = 8448,
6633
+ EnumLike = 98304,
6634
+ ESSymbolLike = 16896,
6635
+ VoidLike = 20,
6636
+ UnionOrIntersection = 402653184,
6637
+ StructuredType = 403701760,
6638
+ TypeVariable = 34078720,
6639
+ InstantiableNonPrimitive = 117964800,
6640
+ InstantiablePrimitive = 14680064,
6641
+ Instantiable = 132644864,
6642
+ StructuredOrInstantiable = 536346624,
6643
+ Narrowable = 536575971,
6643
6644
  }
6644
6645
  type DestructuringPattern = BindingPattern | ObjectLiteralExpression | ArrayLiteralExpression;
6645
6646
  interface Type {
@@ -7222,10 +7223,11 @@ declare namespace ts {
7222
7223
  ES2022 = 9,
7223
7224
  ES2023 = 10,
7224
7225
  ES2024 = 11,
7226
+ ES2025 = 12,
7225
7227
  ESNext = 99,
7226
7228
  JSON = 100,
7227
7229
  Latest = 99,
7228
- LatestStandard = 11,
7230
+ LatestStandard = 12,
7229
7231
  }
7230
7232
  enum LanguageVariant {
7231
7233
  Standard = 0,