UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

9 lines (8 loc) 300 B
import { type ObjectMeta } from '../object-meta.js'; import { type ServiceSpec } from './service-spec.js'; import { type ServiceStatus } from './service-status.js'; export interface Service { readonly metadata?: ObjectMeta; readonly spec?: ServiceSpec; readonly status?: ServiceStatus; }