First upload version 0.0.1

This commit is contained in:
Neyra
2026-02-05 15:27:49 +08:00
commit 8e9b7201ed
4182 changed files with 593136 additions and 0 deletions

14
node_modules/ipull/dist/download/browser-download.d.ts generated vendored Normal file
View File

@@ -0,0 +1,14 @@
import DownloadEngineBrowser, { DownloadEngineOptionsBrowser } from "./download-engine/engine/download-engine-browser.js";
import DownloadEngineMultiDownload from "./download-engine/engine/download-engine-multi-download.js";
export type DownloadFileBrowserOptions = DownloadEngineOptionsBrowser & {
/** @deprecated use partURLs instead */
partsURL?: string[];
};
/**
* Download one file in the browser environment.
*/
export declare function downloadFileBrowser(options: DownloadFileBrowserOptions): Promise<DownloadEngineBrowser<import("./download-engine/streams/download-engine-write-stream/download-engine-write-stream-browser.js").default>>;
/**
* Download multiple files in the browser environment.
*/
export declare function downloadSequenceBrowser(...downloads: (DownloadEngineBrowser | Promise<DownloadEngineBrowser>)[]): Promise<DownloadEngineMultiDownload<import("../index.js").BaseDownloadEngine>>;