@hashgraph/solo
    Preparing search index...
    interface ComponentsDataWrapperApi {
        state: DeploymentStateSchema;
        addNewComponent(component: BaseStateSchema, type: ComponentTypes): void;
        changeNodePhase(componentId: number, phase: DeploymentPhase): void;
        getComponent<T extends BaseStateSchema>(
            type: ComponentTypes,
            componentId: number,
        ): T;
        getComponentById<T extends BaseStateSchema>(
            type: ComponentTypes,
            id: number,
        ): T;
        getComponentsByClusterReference<T extends BaseStateSchema>(
            type: ComponentTypes,
            clusterReference: string,
        ): T[];
        getNewComponentId(componentType: ComponentTypes): number;
        removeComponent(componentId: number, type: ComponentTypes): void;
    }

    Implemented by

    Index

    Properties

    Methods