![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/dceprojects.corals.io/node_modules/extract-zip/ |
// Based on the type definitions for extract-zip 1.6 // Definitions by: Mizunashi Mana <https://github.com/mizunashi-mana> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/e69b58e/types/extract-zip/index.d.ts import { Entry, ZipFile } from 'yauzl'; declare namespace extract { interface Options { dir: string; defaultDirMode?: number; defaultFileMode?: number; onEntry?: (entry: Entry, zipfile: ZipFile) => void; } } declare function extract( zipPath: string, opts: extract.Options, ): Promise<void>; export = extract;