@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
14 lines (13 loc) • 718 B
TypeScript
import { type KindKubeConfigUser } from './kind-kubeconfig-user.js';
import { type KindKubeConfigCluster } from './kind-kubeconfig-custer.js';
import { type KindKubeConfigContext } from './kind-kubeconfig-context.js';
export declare class KindKubeConfig {
readonly apiVersion: string;
readonly clusters: KindKubeConfigCluster[];
readonly contexts: KindKubeConfigContext[];
readonly currenctContext: string;
readonly kind: string;
readonly preferences: any;
readonly users: KindKubeConfigUser[];
constructor(apiVersion: string, clusters: KindKubeConfigCluster[], contexts: KindKubeConfigContext[], currenctContext: string, kind: string, preferences: any, users: KindKubeConfigUser[]);
}