-
Notifications
You must be signed in to change notification settings - Fork 0
fetch download.Function.fetchDownload
github-actions[bot] edited this page Jun 8, 2026
·
2 revisions
@zenstone/ts-utils / fetch-download / fetchDownload
fetchDownload<
T,R>(input):R
Defined in: src/fetch-download/fetchDownload.ts:18
创建 DownloadTask 或 DownloadQueue 的快捷方法
// DownloadTask
const task = fetchDownload('url');
// DownloadQueue
const queue = fetchDownload(['url-a', 'url-b', 'url-c']);T extends DownloadInput | DownloadInput[]
R = T extends DownloadInput ? DownloadTask : DownloadQueue
T
R