thedesk/app/node_modules/app-builder-lib/out/targets/archive.d.ts

22 lines
565 B
TypeScript
Raw Normal View History

2019-09-13 00:38:13 +10:00
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[];