Interface ZipLibrary

Represents the implementations zip.js uses to compress/decompress data.

interface ZipLibrary {
    Deflate: typeof ZipDeflate;
    Inflate: typeof ZipInflate;
}

Properties

Properties

Deflate: typeof ZipDeflate

The class used to compress data.

Default Value

{@link ZipDeflate}
Inflate: typeof ZipInflate

The class used to decompress data.

Default Value

{@link ZipInflate}

Generated using TypeDoc