UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

17 lines (16 loc) 654 B
import { type SoloLogger } from './logging.js'; export declare class Zippy { private readonly logger?; constructor(logger?: SoloLogger); /** * Zip a file or directory * @param srcPath - path to a file or directory * @param destPath - path to the output zip file * @param [verbose] - if true, log the progress * @returns path to the output zip file */ zip(srcPath: string, destPath: string, verbose?: boolean): Promise<string>; unzip(srcPath: string, destPath: string, verbose?: boolean): string; tar(srcPath: string, destPath: string): string; untar(srcPath: string, destPath: string): string; }