UNPKG

@hashgraph/solo

Version:

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

18 lines (13 loc) 403 B
// SPDX-License-Identifier: Apache-2.0 import {Exclude, Expose} from 'class-transformer'; @Exclude() export class DeploymentHistorySchema { @Expose() public commands: string[]; @Expose() public lastExecutedCommand: string; public constructor(commands?: string[], lastExecutedCommand?: string) { this.commands = commands || []; this.lastExecutedCommand = lastExecutedCommand; } }