@zenfs/core 1.6.2 → 1.6.3
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/dist/mixins/async.d.ts
CHANGED
package/dist/mixins/async.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenfs/core",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.3",
|
|
4
4
|
"description": "A filesystem, anywhere",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "individual",
|
|
@@ -21,7 +21,8 @@
|
|
|
21
21
|
"dist",
|
|
22
22
|
"tests",
|
|
23
23
|
"license.md",
|
|
24
|
-
"eslint.shared.js"
|
|
24
|
+
"eslint.shared.js",
|
|
25
|
+
"patches"
|
|
25
26
|
],
|
|
26
27
|
"type": "module",
|
|
27
28
|
"homepage": "https://github.com/zen-fs/core",
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
diff --git a/node_modules/typescript/lib/lib.esnext.disposable.d.ts b/node_modules/typescript/lib/lib.esnext.disposable.d.ts
|
|
2
|
+
index b169d96..2bc15f0 100644
|
|
3
|
+
--- a/node_modules/typescript/lib/lib.esnext.disposable.d.ts
|
|
4
|
+
+++ b/node_modules/typescript/lib/lib.esnext.disposable.d.ts
|
|
5
|
+
@@ -191,3 +191,6 @@ interface IteratorObject<T, TReturn, TNext> extends Disposable {
|
|
6
|
+
|
|
7
|
+
interface AsyncIteratorObject<T, TReturn, TNext> extends AsyncDisposable {
|
|
8
|
+
}
|
|
9
|
+
+
|
|
10
|
+
+interface AsyncIterator<T, TReturn, TNext> extends AsyncDisposable {
|
|
11
|
+
+}
|