UNPKG

@hashgraph/solo

Version:

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

17 lines (16 loc) 509 B
import { ExportLogsOptions } from './export-logs-options.js'; export declare class ExportLogsOptionsBuilder { private _name?; private constructor(); static builder(): ExportLogsOptionsBuilder; /** * Set the name of the cluster (default "kind"). * @param name */ name(name: string): ExportLogsOptionsBuilder; /** * Build the ExportLogsOptions instance. */ build(): ExportLogsOptions; static from(options: ExportLogsOptions): ExportLogsOptionsBuilder; }