@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
13 lines (10 loc) • 306 B
text/typescript
// SPDX-License-Identifier: Apache-2.0
import {type ChartInfo} from './chart-info.js';
import {type ReleaseInfo} from './release-info.js';
export class Release {
public constructor(
public readonly name: string,
public readonly info: ReleaseInfo,
public readonly chart: ChartInfo,
) {}
}