UNPKG

@hashgraph/solo

Version:

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

11 lines (7 loc) 308 B
// SPDX-License-Identifier: Apache-2.0 import {type CommandDefinition} from '../../types/index.js'; export abstract class BaseCommandDefinition { public static readonly COMMAND_NAME: string; protected static readonly DESCRIPTION: string; public abstract getCommandDefinition(): CommandDefinition; }