Update gitignore (sorry)
This commit is contained in:
parent
a8f8c4d7ad
commit
cca8b02fea
6604 changed files with 1219661 additions and 4 deletions
21
electron/node_modules/app-builder-lib/out/targets/archive.d.ts
generated
vendored
Normal file
21
electron/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[];
|
||||
Loading…
Add table
Add a link
Reference in a new issue