UNPKG

@hashgraph/solo

Version:

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

11 lines (8 loc) 269 B
// SPDX-License-Identifier: Apache-2.0 import {type HelmExecutionBuilder} from '../execution/helm-execution-builder.js'; /** * Interface for options that can be applied to Helm commands. */ export interface Options { apply(builder: HelmExecutionBuilder): void; }