From 6dcf5ca8911c10821cf57c7276566f65e373eb3e Mon Sep 17 00:00:00 2001 From: Dhruv Date: Tue, 22 Jul 2025 13:38:21 -0400 Subject: [PATCH] add priority to fetch function type --- typings.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/typings.d.ts b/typings.d.ts index c5caa3e..23136f9 100644 --- a/typings.d.ts +++ b/typings.d.ts @@ -15,6 +15,7 @@ declare function MultipartFetchFunction(url: string, params: { onNext: (result: T[]) => void; onError: (error: unknown) => void; onComplete : () => void + priority?: RequestPriority; }): void