UNPKG

askexperts

Version:

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

14 lines (13 loc) 517 B
import { Command } from "commander"; import { DocstoreCommandOptions } from "./index.js"; /** * List all docstores * @param options Command options */ export declare function listDocstores(options: DocstoreCommandOptions): Promise<void>; /** * Register the list command * @param docstoreCommand The parent docstore command * @param addPathOption Function to add path option to command */ export declare function registerListCommand(docstoreCommand: Command, addCommonOptions: (cmd: Command) => Command): void;