6 lines
113 B
TypeScript
6 lines
113 B
TypeScript
/**
|
|
* Unzip archive
|
|
*/
|
|
declare function unzip(source: string, path: string): Promise<void>;
|
|
|
|
export { unzip };
|