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

    Interface TempStream

    A TransformStream-like temporary buffer returned by a ZipWriterConstructorOptions.createTempStream factory.

    interface TempStream {
        dispose?: () => void | Promise<void>;
        readable: ReadableStream;
        writable: WritableStream;
    }
    Index
    dispose?: () => void | Promise<void>

    Optional cleanup, called once the entry has been processed (on success, error, or abort) to release any backing resource.

    readable: ReadableStream

    The readable side, replayed into the final zip stream once the entry is ready.

    writable: WritableStream

    The writable side, receiving the compressed data of a buffered entry.