@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
14 lines (13 loc) • 394 B
TypeScript
import { SemanticVersion } from '../../../business/utils/semantic-version.js';
/**
* The response from the helm version command.
*/
export declare class Version {
readonly version: string;
constructor(version: string);
/**
* Returns a SemanticVersion representation of the version.
* @returns the helm version
*/
asSemanticVersion(): SemanticVersion<string>;
}