@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
24 lines (23 loc) • 601 B
TypeScript
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;
}