typescript 5.9.0-dev.20250609 → 5.9.0-dev.20250611
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 +118 -106
- package/lib/typescript.d.ts +3 -1
- package/lib/typescript.js +124 -110
- package/package.json +2 -2
package/lib/typescript.d.ts
CHANGED
@@ -2520,6 +2520,7 @@ declare namespace ts {
|
|
2520
2520
|
ESNext = "esnext",
|
2521
2521
|
Node16 = "node16",
|
2522
2522
|
Node18 = "node18",
|
2523
|
+
Node20 = "node20",
|
2523
2524
|
NodeNext = "nodenext",
|
2524
2525
|
Preserve = "preserve",
|
2525
2526
|
}
|
@@ -6716,11 +6717,11 @@ declare namespace ts {
|
|
6716
6717
|
JSLiteral = 4096,
|
6717
6718
|
FreshLiteral = 8192,
|
6718
6719
|
ArrayLiteral = 16384,
|
6720
|
+
SingleSignatureType = 134217728,
|
6719
6721
|
ClassOrInterface = 3,
|
6720
6722
|
ContainsSpread = 2097152,
|
6721
6723
|
ObjectRestType = 4194304,
|
6722
6724
|
InstantiationExpressionType = 8388608,
|
6723
|
-
SingleSignatureType = 134217728,
|
6724
6725
|
}
|
6725
6726
|
interface ObjectType extends Type {
|
6726
6727
|
objectFlags: ObjectFlags;
|
@@ -7159,6 +7160,7 @@ declare namespace ts {
|
|
7159
7160
|
ESNext = 99,
|
7160
7161
|
Node16 = 100,
|
7161
7162
|
Node18 = 101,
|
7163
|
+
Node20 = 102,
|
7162
7164
|
NodeNext = 199,
|
7163
7165
|
Preserve = 200,
|
7164
7166
|
}
|