UNPKG

askexperts

Version:

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

24 lines (23 loc) 560 B
import { Command } from "commander"; /** * Options for the history command */ interface HistoryOptions { remote?: boolean; url?: string; wallet?: string; } /** * Execute the history command * * @param options Command line options * @param dbPath Path to the database file */ export declare function executeHistoryCommand(options: HistoryOptions): Promise<void>; /** * Register the history command with the CLI * * @param program The commander program */ export declare function registerHistoryCommand(program: Command): void; export {};