Download a file from a remote storage provider.
const fileContent = await myRemoteStorage.download(url);
Promise<ArrayBuffer>
A promise that resolves to the content of the downloaded file as an ArrayBuffer.
Type string
string
The URL of the file you want to download.
Last updated 2 days ago