@dxos/random-access-storage 0.7.5-staging.b81e783 → 0.8.0
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.
|
@@ -17,6 +17,6 @@ export declare class IDbStorage extends AbstractStorage {
|
|
|
17
17
|
protected _destroy(): Promise<void>;
|
|
18
18
|
protected _createFile(path: string, filename: string): RandomAccessStorage;
|
|
19
19
|
_loadFiles(path: string): Promise<void>;
|
|
20
|
-
protected _getFiles(path: string): Promise<Map<string, import("
|
|
20
|
+
protected _getFiles(path: string): Promise<Map<string, import("..").File>>;
|
|
21
21
|
}
|
|
22
22
|
//# sourceMappingURL=idb-storage.d.ts.map
|
|
@@ -9,7 +9,7 @@ export declare class NodeStorage extends AbstractStorage implements Storage {
|
|
|
9
9
|
private _loadFiles;
|
|
10
10
|
protected _createFile(path: string, filename: string, opts?: any): RandomAccessStorage;
|
|
11
11
|
protected _destroy(): Promise<void>;
|
|
12
|
-
protected _getFiles(path: string): Promise<Map<string, import("
|
|
12
|
+
protected _getFiles(path: string): Promise<Map<string, import(".").File>>;
|
|
13
13
|
getDiskInfo(): Promise<DiskInfo>;
|
|
14
14
|
}
|
|
15
15
|
//# sourceMappingURL=node-storage.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxos/random-access-storage",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Multiple random storage types.",
|
|
5
5
|
"homepage": "https://dxos.org",
|
|
6
6
|
"bugs": "https://github.com/dxos/dxos/issues",
|
|
@@ -37,13 +37,13 @@
|
|
|
37
37
|
"random-access-file": "^2.2.1",
|
|
38
38
|
"random-access-memory": "^4.1.0",
|
|
39
39
|
"random-access-storage": "^1.3.0",
|
|
40
|
-
"@dxos/
|
|
41
|
-
"@dxos/
|
|
42
|
-
"@dxos/
|
|
43
|
-
"@dxos/
|
|
44
|
-
"@dxos/
|
|
45
|
-
"@dxos/util": "0.
|
|
46
|
-
"@dxos/
|
|
40
|
+
"@dxos/debug": "0.8.0",
|
|
41
|
+
"@dxos/invariant": "0.8.0",
|
|
42
|
+
"@dxos/async": "0.8.0",
|
|
43
|
+
"@dxos/node-std": "0.8.0",
|
|
44
|
+
"@dxos/tracing": "0.8.0",
|
|
45
|
+
"@dxos/util": "0.8.0",
|
|
46
|
+
"@dxos/log": "0.8.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/pify": "^3.0.2",
|