@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
16 lines (15 loc) • 402 B
TypeScript
/**
* The response from the helm repo commands.
*/
export declare class Repository {
readonly name: string;
readonly url: string;
/**
* Constructs a new Repository.
*
* @param name the name of the repository.
* @param url the url of the repository.
* @throws Error if any of the arguments are null or blank.
*/
constructor(name: string, url: string);
}