UNPKG

@hashgraph/solo

Version:

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

9 lines (8 loc) 298 B
import { type GitClient } from '../git-client.js'; /** * Default implementation of {@link GitClient} that delegates to the `simple-git` library. */ export declare class DefaultGitClient implements GitClient { version(): Promise<string>; describeTag(directory: string): Promise<string>; }