UNPKG

@hashgraph/solo

Version:

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

13 lines (12 loc) 492 B
import { type HelmExecutionBuilder } from '../../execution/helm-execution-builder.js'; import { type HelmRequest } from '../helm-request.js'; /** * A request to list all Helm releases. */ export declare class ReleaseListRequest implements HelmRequest { private readonly allNamespaces; private readonly namespace?; private readonly kubeContext?; constructor(allNamespaces: boolean, namespace?: string, kubeContext?: string); apply(builder: HelmExecutionBuilder): void; }