@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
12 lines (11 loc) • 526 B
TypeScript
import { type KindRequest } from '../kind-request.js';
import { type KindExecutionBuilder } from '../../execution/kind-execution-builder.js';
import { type ExportKubeConfigOptions } from '../../model/export-kubeconfig/export-kubeconfig-options.js';
/**
* A request to export the kubectl configuration of a Kind cluster.
*/
export declare class ExportKubeConfigRequest implements KindRequest {
private readonly options;
constructor(options: ExportKubeConfigOptions);
apply(builder: KindExecutionBuilder): void;
}