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