@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
14 lines (13 loc) • 388 B
TypeScript
import { type BaseCommand } from '../commands/base.js';
import { type CommandFlag } from '../types/flag-types.js';
export declare class YargsCommand {
constructor(options: {
command: string;
description: string;
commandDef: BaseCommand | any;
handler: string;
}, flags: {
required: CommandFlag[];
optional: CommandFlag[];
});
}