@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
22 lines (21 loc) • 677 B
TypeScript
import { type HelmExecutionBuilder } from '../../execution/helm-execution-builder.js';
import { type Options } from '../options.js';
/**
* Options for the `helm repo add` command.
*/
export declare class AddRepoOptions implements Options {
/**
* If set, pass --force-update to the helm repo add command.
*/
private readonly _forceUpdate;
constructor(forceUpdate?: boolean);
/**
* Apply the options to the HelmExecutionBuilder.
* @param builder The HelmExecutionBuilder to apply options to.
*/
apply(builder: HelmExecutionBuilder): void;
/**
* Whether --force-update will be set.
*/
get forceUpdate(): boolean;
}