@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
16 lines (15 loc) • 381 B
TypeScript
/**
* SPDX-License-Identifier: Apache-2.0
*/
import { type NamespaceName } from '../resources/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;
}