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

    Interface WritableWriter

    Represents an instance used to write data into a WritableStream instance.

    interface WritableWriter {
        maxSize?: number;
        size?: number;
        writable: WritableStream;
    }

    Implemented by

    Index
    maxSize?: number

    The maximum size of split data when creating a ZipWriter instance or when calling FileEntry#getData with a generator of WritableWriter instances.

    size?: number

    The number of bytes written into the instance. It is set to 0 before the first write and updated as the data is written, so a writer needing the value (e.g. to compute the offset of a disk) can read it.

    writable: WritableStream

    The WritableStream instance.