UNPKG

@hashgraph/solo

Version:

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

12 lines (11 loc) 485 B
import { type KindRequest } from '../kind-request.js'; import { type KindExecutionBuilder } from '../../execution/kind-execution-builder.js'; import { type GetKubeConfigOptions } from '../../model/get-kubeconfig/get-kubeconfig-options.js'; /** * A request to retrieve kubeconfig data. */ export declare class GetKubeConfigRequest implements KindRequest { private readonly options; constructor(options: GetKubeConfigOptions); apply(builder: KindExecutionBuilder): void; }