askexperts
Version:
AskExperts SDK: build and use AI experts - ask them questions and pay with bitcoin on an open protocol
19 lines (18 loc) • 472 B
TypeScript
import { Command } from "commander";
interface WalletCommandOptions {
remote?: boolean;
url?: string;
}
/**
* Execute the list wallets command
*
* @param options Command options
*/
export declare function executeListWalletsCommand(options?: WalletCommandOptions): Promise<void>;
/**
* Register the list wallets command with the CLI
*
* @param program The commander program
*/
export declare function registerListCommand(program: Command): void;
export {};