askexperts
Version:
AskExperts SDK: build and use AI experts - ask them questions and pay with bitcoin on an open protocol
14 lines (13 loc) • 400 B
TypeScript
import { Command } from "commander";
/**
* Add common options to a command
* @param cmd The commander command
* @returns The command with common options added
*/
export declare const addCommonOptions: (cmd: Command) => Command;
/**
* Register all wallet commands with the CLI
*
* @param program The commander program
*/
export declare function registerWalletCommands(program: Command): void;