@types/cross-zip
Version:
TypeScript definitions for cross-zip
5 lines (4 loc) • 324 B
TypeScript
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;