UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

13 lines (12 loc) 332 B
export interface Clusters { /** * Returns a list of clusters that are in the kubeconfig file * @returns a list of cluster names */ list(): string[]; /** * Returns the current cluster name as defined in the kubeconfig file * @returns the current cluster name */ readCurrent(): string; }