@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
9 lines (8 loc) • 429 B
TypeScript
import { type CacheCatalogStructure } from '../cache-catalog-structure.js';
import { type CachedItemStructure } from '../cached-item-structure.js';
export declare class CacheCatalog implements CacheCatalogStructure {
readonly version: string;
readonly soloVersion: string;
readonly items: readonly CachedItemStructure[];
constructor(version: string, soloVersion: string, items: readonly CachedItemStructure[]);
}