next-box 2.1.51 → 2.1.53
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/app/api/storage-api.d.ts +2 -2
- package/package.json +1 -1
package/app/api/storage-api.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export declare class StorageApi extends Api {
|
|
|
19
19
|
/**
|
|
20
20
|
* Submit a file download request
|
|
21
21
|
*/
|
|
22
|
-
download(path?: string): Promise<Response
|
|
22
|
+
download(path?: string): Promise<Response>;
|
|
23
23
|
/**
|
|
24
24
|
* Submit a file change request
|
|
25
25
|
*/
|
|
@@ -50,5 +50,5 @@ export declare class StorageApi extends Api {
|
|
|
50
50
|
saveMeta(body: any, path?: string): Promise<any>;
|
|
51
51
|
relativePath(path?: string, defaultPath?: string): string;
|
|
52
52
|
makeApiPath(...arg: string[]): URL;
|
|
53
|
-
|
|
53
|
+
get metaName(): string;
|
|
54
54
|
}
|