askexperts
Version:
AskExperts SDK: build and use AI experts - ask them questions and pay with bitcoin on an open protocol
23 lines (22 loc) • 517 B
TypeScript
import { Command } from "commander";
/**
* Options for the balance command
*/
interface BalanceOptions {
remote?: boolean;
url?: string;
wallet?: string;
}
/**
* Execute the balance command
*
* @param options Command line options
*/
export declare function executeBalanceCommand(options: BalanceOptions): Promise<void>;
/**
* Register the balance command with the CLI
*
* @param program The commander program
*/
export declare function registerBalanceCommand(program: Command): void;
export {};