UNPKG

@hashgraph/solo

Version:

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

14 lines 367 B
// SPDX-License-Identifier: Apache-2.0 export class ExportLogsResponse { _rawOutput; _exportPath; constructor(_rawOutput) { this._rawOutput = _rawOutput; // Extract destination path this._exportPath = _rawOutput; } get exportPath() { return this._exportPath; } } //# sourceMappingURL=export-logs-response.js.map