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.
- package/lib/_tsc.js +1503 -1066
- package/lib/lib.dom.d.ts +6645 -3113
- package/lib/lib.es2015.collection.d.ts +6 -1
- package/lib/lib.es2015.iterable.d.ts +1 -1
- package/lib/lib.es2020.bigint.d.ts +4 -4
- package/lib/lib.es2020.symbol.wellknown.d.ts +1 -1
- package/lib/lib.es2022.regexp.d.ts +1 -1
- package/lib/lib.es2023.intl.d.ts +9 -1
- package/lib/lib.es2025.collection.d.ts +94 -0
- package/lib/lib.es2025.d.ts +23 -0
- package/lib/lib.es2025.full.d.ts +22 -0
- package/lib/lib.es2025.intl.d.ts +200 -0
- package/lib/lib.es2025.regexp.d.ts +30 -0
- package/lib/lib.es5.d.ts +21 -21
- package/lib/lib.esnext.collection.d.ts +19 -66
- package/lib/lib.esnext.d.ts +4 -5
- package/lib/lib.esnext.date.d.ts +21 -0
- package/lib/lib.esnext.intl.d.ts +89 -1
- package/lib/lib.esnext.temporal.d.ts +473 -0
- package/lib/lib.webworker.d.ts +1909 -863
- package/lib/typescript.d.ts +51 -49
- package/lib/typescript.js +1569 -1127
- package/package.json +2 -2
- /package/lib/{lib.esnext.float16.d.ts → lib.es2025.float16.d.ts} +0 -0
- /package/lib/{lib.esnext.iterator.d.ts → lib.es2025.iterator.d.ts} +0 -0
- /package/lib/{lib.esnext.promise.d.ts → lib.es2025.promise.d.ts} +0 -0
package/lib/typescript.d.ts
CHANGED
|
@@ -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 = "
|
|
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
|
-
|
|
6597
|
-
|
|
6598
|
-
|
|
6599
|
-
|
|
6600
|
-
|
|
6601
|
-
|
|
6602
|
-
|
|
6603
|
-
|
|
6604
|
-
|
|
6605
|
-
|
|
6606
|
-
|
|
6607
|
-
|
|
6608
|
-
|
|
6609
|
-
|
|
6610
|
-
|
|
6611
|
-
|
|
6612
|
-
|
|
6613
|
-
|
|
6614
|
-
|
|
6615
|
-
|
|
6616
|
-
|
|
6617
|
-
|
|
6618
|
-
|
|
6619
|
-
|
|
6620
|
-
|
|
6621
|
-
|
|
6622
|
-
|
|
6623
|
-
Literal =
|
|
6624
|
-
Unit =
|
|
6625
|
-
Freshable =
|
|
6626
|
-
StringOrNumberLiteral =
|
|
6627
|
-
PossiblyFalsy =
|
|
6628
|
-
StringLike =
|
|
6629
|
-
NumberLike =
|
|
6630
|
-
BigIntLike =
|
|
6631
|
-
BooleanLike =
|
|
6632
|
-
EnumLike =
|
|
6633
|
-
ESSymbolLike =
|
|
6634
|
-
VoidLike =
|
|
6635
|
-
UnionOrIntersection =
|
|
6636
|
-
StructuredType =
|
|
6637
|
-
TypeVariable =
|
|
6638
|
-
InstantiableNonPrimitive =
|
|
6639
|
-
InstantiablePrimitive =
|
|
6640
|
-
Instantiable =
|
|
6641
|
-
StructuredOrInstantiable =
|
|
6642
|
-
Narrowable =
|
|
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 =
|
|
7230
|
+
LatestStandard = 12,
|
|
7229
7231
|
}
|
|
7230
7232
|
enum LanguageVariant {
|
|
7231
7233
|
Standard = 0,
|