archive.d.ts 289 B

123456
  1. export interface IExtractOptions {
  2. overwrite: boolean;
  3. }
  4. export declare function extractGeneric(archive: string, dest?: string, options?: IExtractOptions): Promise<string>;
  5. export declare function compress(dir: string, files: string[], type: string, archive: string): Promise<number>;