@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
10 lines (9 loc) • 508 B
TypeScript
import { type CacheStatusStructure } from '../cache-status-structure.js';
import { type CacheTargetStructure } from '../cache-target-structure.js';
export declare class CacheStatus implements CacheStatusStructure {
readonly healthy: boolean;
readonly totalItems: number;
readonly totalSizeBytes: number;
readonly missingTargets: readonly CacheTargetStructure[];
constructor(healthy: boolean, totalItems: number, totalSizeBytes: number, missingTargets: readonly CacheTargetStructure[]);
}