askexperts
Version:
AskExperts SDK: build and use AI experts - ask them questions and pay with bitcoin on an open protocol
21 lines (20 loc) • 470 B
TypeScript
import { Command } from "commander";
/**
* Options for the whoami command
*/
interface WhoamiOptions {
debug?: boolean;
}
/**
* Execute the whoami command
*
* @param options Command line options
*/
export declare function executeWhoamiCommand(options: WhoamiOptions): Promise<void>;
/**
* Register the whoami command with the CLI
*
* @param program The commander program
*/
export declare function registerWhoamiCommand(program: Command): void;
export {};