1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| import { CompressionLevel } from "../core";
| export interface ArchiveOptions {
| compression?: CompressionLevel | null;
| /**
| * @default false
| */
| withoutDir?: boolean;
| /**
| * @default true
| */
| solid?: boolean;
| /**
| * @default true
| */
| isArchiveHeaderCompressed?: boolean;
| dictSize?: number;
| excluded?: Array<string> | null;
| method?: "Copy" | "LZMA" | "Deflate" | "DEFAULT";
| isRegularFile?: boolean;
| }
| export declare function compute7zCompressArgs(format: string, options?: ArchiveOptions): string[];
|
|