typescript 6.0.0-dev.20251002 → 6.0.0-dev.20251004
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 +14 -1
- package/lib/lib.dom.asynciterable.d.ts +2 -23
- package/lib/lib.dom.d.ts +2217 -873
- package/lib/lib.dom.iterable.d.ts +2 -553
- package/lib/lib.esnext.d.ts +1 -0
- package/lib/lib.esnext.typedarrays.d.ts +90 -0
- package/lib/lib.webworker.asynciterable.d.ts +2 -23
- package/lib/lib.webworker.d.ts +948 -328
- package/lib/lib.webworker.iterable.d.ts +2 -322
- package/lib/typescript.js +14 -1
- package/package.json +2 -2
package/lib/_tsc.js
CHANGED
@@ -18,7 +18,7 @@ and limitations under the License.
|
|
18
18
|
|
19
19
|
// src/compiler/corePublic.ts
|
20
20
|
var versionMajorMinor = "6.0";
|
21
|
-
var version = `${versionMajorMinor}.0-dev.
|
21
|
+
var version = `${versionMajorMinor}.0-dev.20251004`;
|
22
22
|
|
23
23
|
// src/compiler/core.ts
|
24
24
|
var emptyArray = [];
|
@@ -13478,6 +13478,12 @@ var getScriptTargetFeatures = /* @__PURE__ */ memoize(
|
|
13478
13478
|
"toSorted",
|
13479
13479
|
"toSpliced",
|
13480
13480
|
"with"
|
13481
|
+
],
|
13482
|
+
esnext: [
|
13483
|
+
"toBase64",
|
13484
|
+
"setFromBase64",
|
13485
|
+
"toHex",
|
13486
|
+
"setFromHex"
|
13481
13487
|
]
|
13482
13488
|
})),
|
13483
13489
|
Uint8ClampedArray: new Map(Object.entries({
|
@@ -13606,6 +13612,12 @@ var getScriptTargetFeatures = /* @__PURE__ */ memoize(
|
|
13606
13612
|
es2022: [
|
13607
13613
|
"cause"
|
13608
13614
|
]
|
13615
|
+
})),
|
13616
|
+
Uint8ArrayConstructor: new Map(Object.entries({
|
13617
|
+
esnext: [
|
13618
|
+
"fromBase64",
|
13619
|
+
"fromHex"
|
13620
|
+
]
|
13609
13621
|
}))
|
13610
13622
|
}))
|
13611
13623
|
);
|
@@ -36468,6 +36480,7 @@ var libEntries = [
|
|
36468
36480
|
["esnext.iterator", "lib.esnext.iterator.d.ts"],
|
36469
36481
|
["esnext.promise", "lib.esnext.promise.d.ts"],
|
36470
36482
|
["esnext.float16", "lib.esnext.float16.d.ts"],
|
36483
|
+
["esnext.typedarrays", "lib.esnext.typedarrays.d.ts"],
|
36471
36484
|
["esnext.error", "lib.esnext.error.d.ts"],
|
36472
36485
|
["esnext.sharedmemory", "lib.esnext.sharedmemory.d.ts"],
|
36473
36486
|
["decorators", "lib.decorators.d.ts"],
|
@@ -14,26 +14,5 @@ and limitations under the License.
|
|
14
14
|
***************************************************************************** */
|
15
15
|
|
16
16
|
|
17
|
-
|
18
|
-
|
19
|
-
/////////////////////////////
|
20
|
-
|
21
|
-
interface FileSystemDirectoryHandleAsyncIterator<T> extends AsyncIteratorObject<T, BuiltinIteratorReturn, unknown> {
|
22
|
-
[Symbol.asyncIterator](): FileSystemDirectoryHandleAsyncIterator<T>;
|
23
|
-
}
|
24
|
-
|
25
|
-
interface FileSystemDirectoryHandle {
|
26
|
-
[Symbol.asyncIterator](): FileSystemDirectoryHandleAsyncIterator<[string, FileSystemHandle]>;
|
27
|
-
entries(): FileSystemDirectoryHandleAsyncIterator<[string, FileSystemHandle]>;
|
28
|
-
keys(): FileSystemDirectoryHandleAsyncIterator<string>;
|
29
|
-
values(): FileSystemDirectoryHandleAsyncIterator<FileSystemHandle>;
|
30
|
-
}
|
31
|
-
|
32
|
-
interface ReadableStreamAsyncIterator<T> extends AsyncIteratorObject<T, BuiltinIteratorReturn, unknown> {
|
33
|
-
[Symbol.asyncIterator](): ReadableStreamAsyncIterator<T>;
|
34
|
-
}
|
35
|
-
|
36
|
-
interface ReadableStream<R = any> {
|
37
|
-
[Symbol.asyncIterator](options?: ReadableStreamIteratorOptions): ReadableStreamAsyncIterator<R>;
|
38
|
-
values(options?: ReadableStreamIteratorOptions): ReadableStreamAsyncIterator<R>;
|
39
|
-
}
|
17
|
+
// This file's contents are now included in the main types file.
|
18
|
+
// The file has been left for backward compatibility.
|