@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
14 lines (13 loc) • 434 B
TypeScript
import { type ChartMetadata } from './chart-metadata.js';
/**
* Represents information about a Helm chart.
* This class is designed to be serializable from JSON with unknown properties ignored.
*/
export declare class ChartInfo {
readonly metadata: ChartMetadata;
/**
* Creates a new ChartInfo instance.
* @param metadata The metadata associated with the chart
*/
constructor(metadata: ChartMetadata);
}