askexperts
Version:
AskExperts SDK: build and use AI experts - ask them questions and pay with bitcoin on an open protocol
25 lines (24 loc) • 652 B
TypeScript
import { Command } from "commander";
/**
* Options for the delete wallet command
*/
interface DeleteWalletOptions {
remote?: boolean;
url?: string;
yes?: boolean;
}
/**
* Execute the delete wallet command
*
* @param name The name of the wallet to delete
* @param options Command line options
* @param dbPath Path to the database file
*/
export declare function executeDeleteWalletCommand(name: string, options: DeleteWalletOptions): Promise<void>;
/**
* Register the delete wallet command with the CLI
*
* @param program The commander program
*/
export declare function registerDeleteCommand(program: Command): void;
export {};