@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
18 lines (17 loc) • 442 B
TypeScript
import { KindKubeConfig } from './kubeconfig/kind-kubeconfig.js';
/**
* Represents a parsed kubeconfig response from Kind
*/
export declare class GetKubeConfigResponse {
protected readonly _rawOutput: string;
private readonly _config;
constructor();
/**
* Gets the raw kubeconfig content
*/
get rawOutput(): string;
/**
* Gets the full parsed config object
*/
get config(): KindKubeConfig;
}