UNPKG

@wapython/wasi

Version:

Javascript library for interacting with WASI Modules in Node.js and the Browser.

11 lines (10 loc) 282 B
export declare type UnzipOptions = { data: ArrayBuffer | Uint8Array; fs: { mkdirSync: Function; statSync: Function; writeFileSync: Function; }; directory: string; }; export default function unzip({ data, fs, directory }: UnzipOptions): void;