@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
12 lines (11 loc) • 371 B
TypeScript
import { type Opts } from './base.js';
/**
* Return a list of Yargs command builder to be exposed through CLI
* @param opts it is an Options object containing logger
* @returns an array of Yargs command builder
*/
export declare function Initialize(opts: Opts): {
command: string;
desc: string;
builder: import("../types/aliases.js").CommandBuilder;
}[];