@zip.js/zip.js
    Preparing search index...

    Interface EntryExtraFieldZip64

    Represents the Zip64 extra field record of an entry. Each property is only defined when the matching field of the header was set to its maximum value, i.e. when the real value had to be stored in the extra field.

    interface EntryExtraFieldZip64 {
        compressedSize?: number;
        data: Uint8Array;
        diskNumberStart?: number;
        offset?: number;
        type: number;
        uncompressedSize?: number;
    }

    Hierarchy (View Summary)

    Index
    compressedSize?: number

    The compressed size of the entry.

    data: Uint8Array

    The data of the extra field.

    diskNumberStart?: number

    The number of the disk where the entry data starts.

    offset?: number

    The offset of the local file header of the entry.

    type: number

    The type (header id) of the extra field.

    uncompressedSize?: number

    The uncompressed size of the entry.