@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
16 lines • 447 B
JavaScript
// SPDX-License-Identifier: Apache-2.0
/**
* Represents information about a Helm chart.
* This class is designed to be serializable from JSON with unknown properties ignored.
*/
export class ChartInfo {
metadata;
/**
* Creates a new ChartInfo instance.
* @param metadata The metadata associated with the chart
*/
constructor(metadata) {
this.metadata = metadata;
}
}
//# sourceMappingURL=chart-info.js.map