@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
19 lines (18 loc) • 497 B
TypeScript
/**
* SPDX-License-Identifier: Apache-2.0
*/
import { BaseCommand, type Opts } from './../base.js';
import { ClusterCommandHandlers } from './handlers.js';
/**
* Defines the core functionalities of 'node' command
*/
export declare class ClusterCommand extends BaseCommand {
handlers: ClusterCommandHandlers;
constructor(opts: Opts);
getCommandDefinition(): {
command: string;
desc: string;
builder: (yargs: any) => any;
};
close(): Promise<void>;
}