index.d.ts should include metadata in DownloadOption

This commit is contained in:
Chris Savvopoulos
2023-12-04 23:00:24 +01:00
committed by GitHub
parent 34e2b6c5ef
commit 55531b7b3b

1
index.d.ts vendored
View File

@@ -86,6 +86,7 @@ export interface DownloadOption {
url: string;
destination: string;
headers?: DownloadHeaders | undefined;
metadata?: object;
}
export type Download = (options: DownloadOption) => DownloadTask;