@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
29 lines (24 loc) • 608 B
text/typescript
// SPDX-License-Identifier: Apache-2.0
import {type CacheTargetStructure} from './cache-target-structure.js';
/**
* Describes the health of a single cached target.
*/
export interface ArtifactHealthResultStructure {
/**
* Target that was checked.
*/
readonly target: CacheTargetStructure;
/**
* Whether the cached target is considered healthy.
*/
readonly healthy: boolean;
/**
* Optional human-readable message describing the result.
*
* Examples:
* - "archive exists"
* - "archive missing"
* - "chart package is corrupted"
*/
readonly message?: string;
}