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

    Interface EntryExtraFieldUnicode

    Represents a Unicode path or comment extra field record of an entry.

    interface EntryExtraFieldUnicode {
        comment?: string;
        data: Uint8Array;
        filename?: string;
        type: number;
        valid?: boolean;
        version?: number;
    }

    Hierarchy (View Summary)

    Index
    comment?: string

    The comment stored in the extra field, when it is a Unicode comment extra field (0x6375).

    data: Uint8Array

    The data of the extra field.

    filename?: string

    The filename stored in the extra field, when it is a Unicode path extra field (0x7075).

    type: number

    The type (header id) of the extra field.

    valid?: boolean

    true if the extra field is consistent with the entry metadata.

    version?: number

    The version of the extra field.