@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
34 lines (33 loc) • 962 B
TypeScript
import { type Options } from '../../request/options.js';
import { type KindExecutionBuilder } from '../../execution/kind-execution-builder.js';
/**
* Options for the `kind cluster delete` command.
*/
export declare class LoadDockerImageOptions implements Options {
/**
* The name of the cluster context name (default "kind")
*/
private readonly _name;
/**
* comma separated list of nodes to load images into
*/
private readonly _nodes;
/**
* The Docker image to load.
*/
private readonly _imageName;
constructor(imageName: string, name?: string, nodes?: string);
/**
* Apply the options to the KindExecutionBuilder.
* @param builder The KindExecutionBuilder to apply options to.
*/
apply(builder: KindExecutionBuilder): void;
/**
* The name of the cluster.
*/
get name(): string;
/**
* The nodes to load images into.
*/
get nodes(): string;
}