UNPKG

fs-nextra

Version:

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

10 lines (9 loc) 356 B
/** * Extracts files from .tar.gz archives. * @function unTargz * @memberof fsn/nextra * @param outputDirectory The directory to extract to * @param inputFile The archive file * @param atomic The if the writes should be atomic */ export declare function unTargz(outputDirectory: string, inputFile: string, atomic?: boolean): Promise<void>;