cross-7zip - v1.2.0
    Preparing search index...

    Type Alias ZipOptions

    type ZipOptions = {
        destination: string;
        files: string[];
        level?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
        overwrite?: boolean;
        password?: string;
    }
    Index

    Properties

    destination: string

    Specifies the path to the output zipped file.

    files: string[]

    Specifies the paths to the files to add to the zipped file.

    level?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9

    Compression level, where 1 is the fastest and 9 is the best compression.

    overwrite?: boolean

    Overwrites the existing ZIP file instead of updating it.

    password?: string

    Password for the archive.