@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
9 lines (8 loc) • 403 B
TypeScript
import { type CachedItemStructure } from '../cached-item-structure.js';
import { type CacheTargetStructure } from '../cache-target-structure.js';
export declare class CachedItem implements CachedItemStructure {
readonly target: CacheTargetStructure;
readonly localPath: string;
readonly cachedAt: string;
constructor(target: CacheTargetStructure, localPath: string, cachedAt: string);
}