UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

12 lines 309 B
// SPDX-License-Identifier: Apache-2.0 export class ArtifactHealthResult { target; healthy; message; constructor(target, healthy, message) { this.target = target; this.healthy = healthy; this.message = message; } } //# sourceMappingURL=artifact-health-result.js.map