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

    Interface EntryError

    Represents an error raised while processing an entry, decorated with entry context.

    interface EntryError {
        corruptedEntry?: boolean;
        entryId?: number;
        message: string;
        name: string;
        stack?: string;
    }

    Hierarchy

    • Error
      • EntryError
    Index
    corruptedEntry?: boolean

    true if the zip file is corrupted because the entry data could not be written entirely.

    entryId?: number

    The id of the related ZipEntry (filesystem API).

    message: string
    name: string
    stack?: string