@oceanprotocol/lib 3.0.3 → 3.0.4
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/CHANGELOG.md +7 -0
- package/dist/lib.js +1 -1
- package/dist/lib.js.map +1 -1
- package/dist/lib.modern.js +1 -1
- package/dist/lib.modern.js.map +1 -1
- package/dist/lib.module.js +1 -1
- package/dist/lib.module.js.map +1 -1
- package/dist/lib.umd.js +1 -1
- package/dist/lib.umd.js.map +1 -1
- package/dist/src/utils/FetchHelper.d.ts +1 -1
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ import { DownloadResponse } from '../@types';
|
|
|
4
4
|
* @param {string} url - The URL of the file to download
|
|
5
5
|
* @returns {Promise<void>} - A Promise that resolves when the file has been downloaded
|
|
6
6
|
*/
|
|
7
|
-
export declare function downloadFileBrowser(url: string):
|
|
7
|
+
export declare function downloadFileBrowser(url: string): void;
|
|
8
8
|
/**
|
|
9
9
|
* Triggers a file download from the specified URL when called from a browser context.
|
|
10
10
|
* @param {string} url - The URL of the file to download
|