@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
16 lines (13 loc) • 442 B
text/typescript
// SPDX-License-Identifier: Apache-2.0
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 class ChartInfo {
/**
* Creates a new ChartInfo instance.
* @param metadata The metadata associated with the chart
*/
public constructor(public readonly metadata: ChartMetadata) {}
}