From 55531b7b3b3973c47286975df1838d801aee2bc4 Mon Sep 17 00:00:00 2001 From: Chris Savvopoulos Date: Mon, 4 Dec 2023 23:00:24 +0100 Subject: [PATCH] index.d.ts should include metadata in DownloadOption --- index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.d.ts b/index.d.ts index 944d5f8..39f5a9b 100644 --- a/index.d.ts +++ b/index.d.ts @@ -86,6 +86,7 @@ export interface DownloadOption { url: string; destination: string; headers?: DownloadHeaders | undefined; + metadata?: object; } export type Download = (options: DownloadOption) => DownloadTask;