UNPKG

@hashgraph/solo

Version:

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

13 lines (12 loc) 336 B
import { type NamespaceName } from '../../../types/namespace/namespace-name.js'; export interface ObjectMeta { readonly namespace?: NamespaceName; readonly name: string; readonly labels?: { [key: string]: string; }; readonly annotations?: { [key: string]: string; }; readonly uid?: string; }