@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
11 lines (10 loc) • 598 B
TypeScript
import { type DeploymentPhase } from '../deployment-phase.js';
import { type ClusterReferenceName, type ComponentId, type NamespaceNameAsString, type PortForwardConfig } from '../../../../../types/index.js';
export declare class ComponentStateMetadataSchema {
id: ComponentId;
namespace: NamespaceNameAsString;
cluster: ClusterReferenceName;
phase: DeploymentPhase;
portForwardConfigs: PortForwardConfig[];
constructor(id?: ComponentId, namespace?: NamespaceNameAsString, cluster?: ClusterReferenceName, phase?: DeploymentPhase, portForwardConfigs?: PortForwardConfig[]);
}