UNPKG

@hashgraph/solo

Version:

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

22 lines (21 loc) 659 B
import { type Options } from '../../request/options.js'; import { type KindExecutionBuilder } from '../../execution/kind-execution-builder.js'; /** * Options for the `kind cluster delete` command. */ export declare class ExportLogsOptions implements Options { /** * The name of the cluster context name (default "kind") */ private readonly _name; constructor(name?: string); /** * Apply the options to the KindExecutionBuilder. * @param builder The KindExecutionBuilder to apply options to. */ apply(builder: KindExecutionBuilder): void; /** * The name of the cluster. */ get name(): string; }