Interface WritableWriter

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

interface WritableWriter {
    maxSize?: number;
    writable: WritableStream<any>;
}

Implemented by

Properties

Properties

maxSize?: number

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

writable: WritableStream<any>

The WritableStream instance.

Generated using TypeDoc