@gyng/remote-zip
    Preparing search index...

    Interface RemoteZipRequestOptions

    Network options shared by every request a RemoteZip / RemoteZipPointer makes. All are optional with sensible defaults.

    interface RemoteZipRequestOptions {
        credentials?: "include" | "omit" | "same-origin";
        method?: string;
        redirect?: RequestRedirect;
        requestInit?: RequestInit;
        signal?: AbortSignal;
        timeoutMs?: number;
    }
    Index

    Properties

    credentials?: "include" | "omit" | "same-origin"

    Passed to fetch. Defaults to "same-origin".

    method?: string

    HTTP method for the Range GET requests. The metadata probe is always a HEAD. Defaults to "GET".

    redirect?: RequestRedirect

    Passed to fetch. Defaults to "follow". Use "manual" or "error" to avoid leaking Authorization/cookies cross-origin when a server responds with a redirect.

    requestInit?: RequestInit

    Escape hatch merged into every fetch RequestInit (lowest precedence — the options above win).

    signal?: AbortSignal

    Aborts in-flight requests when this signal fires.

    timeoutMs?: number

    Per-request timeout in milliseconds; combined with signal via AbortSignal.any.