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

21
node_modules/ipull/dist/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,21 @@
import DownloadEngineNodejs from "./download/download-engine/engine/download-engine-nodejs.js";
import { downloadFile, DownloadFileOptions, downloadSequence, DownloadSequenceOptions } from "./download/node-download.js";
import { SaveProgressInfo } from "./download/download-engine/types.js";
import PathNotAFileError from "./download/download-engine/streams/download-engine-fetch-stream/errors/path-not-a-file-error.js";
import EmptyResponseError from "./download/download-engine/streams/download-engine-fetch-stream/errors/empty-response-error.js";
import StatusCodeError from "./download/download-engine/streams/download-engine-fetch-stream/errors/status-code-error.js";
import XhrError from "./download/download-engine/streams/download-engine-fetch-stream/errors/xhr-error.js";
import InvalidContentLengthError from "./download/download-engine/streams/download-engine-fetch-stream/errors/invalid-content-length-error.js";
import FetchStreamError from "./download/download-engine/streams/download-engine-fetch-stream/errors/fetch-stream-error.js";
import IpullError from "./errors/ipull-error.js";
import EngineError from "./download/download-engine/engine/error/engine-error.js";
import { FormattedStatus } from "./download/transfer-visualize/format-transfer-status.js";
import DownloadEngineMultiDownload from "./download/download-engine/engine/download-engine-multi-download.js";
import HttpError from "./download/download-engine/streams/download-engine-fetch-stream/errors/http-error.js";
import BaseDownloadEngine from "./download/download-engine/engine/base-download-engine.js";
import { InvalidOptionError } from "./download/download-engine/engine/error/InvalidOptionError.js";
import { BaseMultiProgressBar, MultiProgressBarOptions } from "./download/transfer-visualize/transfer-cli/multiProgressBars/BaseMultiProgressBar.js";
import { DownloadFlags, DownloadStatus } from "./download/download-engine/download-file/progress-status-file.js";
import { NoDownloadEngineProvidedError } from "./download/download-engine/engine/error/no-download-engine-provided-error.js";
export { DownloadFlags, DownloadStatus, downloadFile, downloadSequence, BaseMultiProgressBar, PathNotAFileError, EmptyResponseError, HttpError, StatusCodeError, XhrError, InvalidContentLengthError, FetchStreamError, IpullError, EngineError, InvalidOptionError, NoDownloadEngineProvidedError };
export type { BaseDownloadEngine, DownloadFileOptions, DownloadSequenceOptions, DownloadEngineNodejs, DownloadEngineMultiDownload, SaveProgressInfo, FormattedStatus, MultiProgressBarOptions };