UNPKG

@hashgraph/solo

Version:

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

31 lines 707 B
// SPDX-License-Identifier: Apache-2.0 /** * Options for the `kind cluster delete` command. */ export class ExportLogsOptions { /** * The name of the cluster context name (default "kind") */ _name; constructor(name) { if (name) { this._name = name; } } /** * Apply the options to the KindExecutionBuilder. * @param builder The KindExecutionBuilder to apply options to. */ apply(builder) { if (this._name) { builder.argument('name', this._name); } } /** * The name of the cluster. */ get name() { return this._name; } } //# sourceMappingURL=export-logs-options.js.map