@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
10 lines (9 loc) • 435 B
TypeScript
import { type CacheTargetStructure } from '../cache-target-structure.js';
import { type CacheArtifactEnum } from '../../enums/cache-artifact-enum.js';
export declare class CacheTarget implements CacheTargetStructure {
readonly type: CacheArtifactEnum;
readonly name: string;
readonly version: string;
readonly source?: string;
constructor(type: CacheArtifactEnum, name: string, version: string, source?: string);
}