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

    Interface SupportedCompressionMethod

    Represents the support of a compression method, see getSupportedCompressionMethods.

    interface SupportedCompressionMethod {
        compression?: boolean;
        compressionMethod: number;
        decompression?: boolean;
        registered: boolean;
    }
    Index
    compression?: boolean

    true if entries can be compressed with the method. It is undefined when the support is unknown, i.e. for a codec registered with CodecDefinition#codecURI whose module has not been imported yet.

    compressionMethod: number

    The compression method stored in zip entry headers (e.g. 8 for Deflate).

    decompression?: boolean

    true if entries can be decompressed with the method. It is undefined when the support is unknown, i.e. for a codec registered with CodecDefinition#codecURI whose module has not been imported yet.

    registered: boolean

    true if the method comes from a codec registered with registerCodec.