UNPKG

@hashgraph/solo

Version:

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

12 lines (11 loc) 479 B
import { type KindRequest } from '../kind-request.js'; import { type KindExecutionBuilder } from '../../execution/kind-execution-builder.js'; import { type ExportLogsOptions } from '../../model/export-logs/export-logs-options.js'; /** * A request to export the logs of a Kind cluster. */ export declare class ExportLogsRequest implements KindRequest { private readonly options; constructor(options: ExportLogsOptions); apply(builder: KindExecutionBuilder): void; }