UNPKG

@hashgraph/solo

Version:

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

18 lines (17 loc) 604 B
import { BaseCommand, type Opts } from './base.js'; import { ClusterCommandTasks } from './cluster/tasks.js'; import { type CommandBuilder } from '../types/aliases.js'; export declare class DeploymentCommand extends BaseCommand { readonly tasks: ClusterCommandTasks; constructor(opts: Opts); private static get DEPLOY_FLAGS_LIST(); private static get LIST_DEPLOYMENTS_FLAGS_LIST(); create(argv: any): Promise<boolean>; private list; getCommandDefinition(): { command: string; desc: string; builder: CommandBuilder; }; close(): Promise<void>; }