thedesk/app/node_modules/app-builder-lib/out/targets/archive.d.ts
2019-09-12 23:38:13 +09:00

22 lines
565 B
TypeScript

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[];