6 lines
117 B
TypeScript
6 lines
117 B
TypeScript
/**
|
|
* Unpack .tgz archive
|
|
*/
|
|
declare function untar(file: string, path: string): Promise<void>;
|
|
|
|
export { untar };
|