Skip to main content
Module

x/zipjs/index.d.ts>WorkerConfiguration

JavaScript library to zip and unzip files supporting multi-core compression, compression streams, zip64, split files and encryption.
Go to Latest
interface WorkerConfiguration
import { type WorkerConfiguration } from "https://deno.land/x/zipjs@v2.7.42/index.d.ts";

Represents configuration passed to configure, the constructor of ZipReader, Entry#getData, the constructor of ZipWriter, and ZipWriter#add.

Properties

optional
useWebWorkers: boolean

true to use web workers to compress/decompress data in non-blocking background processes.

optional
useCompressionStream: boolean

true to use the native API CompressionStream/DecompressionStream to compress/decompress data.