UNPKG

nwjs-builder-phoenix

Version:

A possible solution to build and package a ready for distribution NW.js app for Windows, macOS and Linux.

6 lines (5 loc) 289 B
export interface IExtractOptions { overwrite: boolean; } export declare function extractGeneric(archive: string, dest?: string, options?: IExtractOptions): Promise<string>; export declare function compress(dir: string, files: string[], type: string, archive: string): Promise<number>;