@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
20 lines (19 loc) • 478 B
TypeScript
import { type NamespaceName } from '../../../../types/namespace/namespace-name.js';
export interface ConfigMap {
/**
* The namespace of the config map
*/
readonly namespace: NamespaceName;
/**
* The name of the config map
*/
readonly name: string;
/**
* The labels of the config map
*/
readonly labels?: Record<string, string>;
/**
* The data of the config map
*/
readonly data?: Record<string, string>;
}