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