UNPKG

@hashgraph/solo

Version:

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

11 lines (8 loc) 277 B
// SPDX-License-Identifier: Apache-2.0 import {type PodCondition} from '../../../resources/pod/pod-condition.js'; export class K8ClientPodCondition implements PodCondition { public constructor( public readonly type: string, public readonly status: string, ) {} }