Interface ZipOptions

Configuration options for a ZipFS file system.

interface ZipOptions {
    data: ArrayBufferLike;
    lazy?: boolean;
    name?: string;
}

Properties

Properties

data: ArrayBufferLike

The zip file as a binary buffer.

lazy?: boolean

Whether to wait to initialize entries

name?: string

The name of the zip file (optional).