4.0.2 • Published 7 months ago

@types/cross-zip v4.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Installation

npm install --save @types/cross-zip

Summary

This package contains type definitions for cross-zip (https://github.com/feross/cross-zip).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cross-zip.

index.d.ts

// Type definitions for cross-zip 4.0
// Project: https://github.com/feross/cross-zip
// Definitions by: Florian Imdahl <https://github.com/ffflorian>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

export function unzip(inPath: string, outPath: string, callback?: (error?: Error) => void): void;
export function unzipSync(inPath: string, outPath: string): void;
export function zip(inPath: string, outPath: string, callback?: (error?: Error) => void): void;
export function zipSync(inPath: string, outPath: string): void;

Additional Details

  • Last updated: Thu, 08 Jul 2021 16:22:26 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Florian Imdahl.