@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
13 lines (10 loc) • 414 B
text/typescript
// SPDX-License-Identifier: Apache-2.0
import {type CacheCatalogStructure} from '../cache-catalog-structure.js';
import {type CachedItemStructure} from '../cached-item-structure.js';
export class CacheCatalog implements CacheCatalogStructure {
public constructor(
public readonly version: string,
public readonly soloVersion: string,
public readonly items: readonly CachedItemStructure[],
) {}
}