UNPKG

askexperts

Version:

AskExperts SDK: build and use AI experts - ask them questions and pay with bitcoin on an open protocol

25 lines (24 loc) 656 B
import { Command } from "commander"; /** * Options for the create wallet command */ interface CreateWalletOptions { remote?: boolean; url?: string; default?: boolean; } /** * Execute the create wallet command * * @param name The name of the wallet to create * @param options Command line options * @param dbPath Path to the database file */ export declare function executeCreateWalletCommand(name: string, options: CreateWalletOptions): Promise<void>; /** * Register the create wallet command with the CLI * * @param program The commander program */ export declare function registerCreateCommand(program: Command): void; export {};