@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
11 lines (10 loc) • 343 B
TypeScript
export declare class ChartMetadata {
readonly version: string;
readonly appVersion: string;
/**
* Creates a new ChartMetadata instance.
* @param version The version of the chart
* @param appVersion The version of the application contained in the chart
*/
constructor(version: string, appVersion: string);
}