We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81d5fd1 commit 87d7e0cCopy full SHA for 87d7e0c
1 file changed
README.md
@@ -121,8 +121,9 @@ node_storage_manager allows you to switch between clients easily without reconfi
121
122
async function download(bucketName) {
123
// Creates the new bucket
124
- await StorageInstance.download(bucketName, 'filepath', 'image or video');
125
- console.log(`file downloaded`);
+ let result = await StorageInstance.download(bucketName, 'filepath', 'image or video');
+ console.log(result);
126
+ // This way you can get all data returned from Cloudinary Client e.g result.url e.t.c
127
}
128
```
129
0 commit comments