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

    Interface EntryDecodeOptions

    Per-call options for RemoteZip.fetch / RemoteZip.fetchStream.

    interface EntryDecodeOptions {
        maxUncompressedSize?: number;
        password?: string;
        signal?: AbortSignal;
        timeoutMs?: number;
        verifyCrc?: boolean;
    }
    Index

    Properties

    maxUncompressedSize?: number

    If set, decompression aborts and throws once output would exceed this many bytes.

    password?: string

    Password for an encrypted entry (traditional ZipCrypto or WinZip AES).

    signal?: AbortSignal

    Aborts this request (in addition to any instance-level signal).

    timeoutMs?: number

    Per-request timeout in milliseconds.

    verifyCrc?: boolean

    If set, verify the decompressed output against the entry's CRC-32.