UNPKG

fs-nextra

Version:

Node.js fs next-gen extra (nextra) methods.

10 lines (9 loc) 345 B
/** * Un-Gzips a file * @function gunzip * @memberof fsn/nextra * @param fileName The filename of the output file * @param inputFile The filepath of the archive * @param atomic If the unzip file should be created atomically */ export declare function gunzip(fileName: string, inputFile: string, atomic?: boolean): Promise<void>;