@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
18 lines (17 loc) • 501 B
TypeScript
import { AddRepoOptions } from './add-repo-options.js';
/**
* Builder for AddRepoOptions for helm repo add command.
*/
export declare class AddRepoOptionsBuilder {
private _forceUpdate;
/**
* Set whether to use --force-update.
* @param forceUpdate If true, adds --force-update to the command.
* @returns this builder
*/
forceUpdate(forceUpdate: boolean): AddRepoOptionsBuilder;
/**
* Build the AddRepoOptions instance.
*/
build(): AddRepoOptions;
}