Kizuki
    Preparing search index...

    Interface ZipLimits

    How much of a zip file Kizuki unpacks, so a small file that unpacks to gigabytes can't use up the computer's memory.

    interface ZipLimits {
        maxEntries: number;
        maxEntryBytes: number;
        maxTotalBytes: number;
    }
    Index
    maxEntries: number

    The most parts the file may have.

    maxEntryBytes: number

    The most bytes one part may unpack to.

    maxTotalBytes: number

    The most bytes all the parts Kizuki reads may unpack to together.