stuff
This commit is contained in:
21
buildfiles/node_modules/app-builder-lib/out/targets/archive.d.ts
generated
vendored
Normal file
21
buildfiles/node_modules/app-builder-lib/out/targets/archive.d.ts
generated
vendored
Normal file
@ -0,0 +1,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[];
|
Reference in New Issue
Block a user