Merge pull request #35 from savv/patch-1

index.d.ts should include metadata in DownloadOption
This commit is contained in:
Kesha Antonov
2023-12-05 08:27:08 +03:00
committed by GitHub
Vendored
+1
View File
@@ -86,6 +86,7 @@ export interface DownloadOption {
url: string;
destination: string;
headers?: DownloadHeaders | undefined;
metadata?: object;
}
export type Download = (options: DownloadOption) => DownloadTask;