askexperts
Version:
AskExperts SDK: build and use AI experts - ask them questions and pay with bitcoin on an open protocol
15 lines (14 loc) • 575 B
TypeScript
import { Command } from "commander";
import { DocstoreCommandOptions } from "./index.js";
/**
* Delete a docstore
* @param id ID of the docstore to delete
* @param options Command options
*/
export declare function removeDocstore(id: string, options: DocstoreCommandOptions): Promise<void>;
/**
* Register the remove command
* @param docstoreCommand The parent docstore command
* @param addPathOption Function to add path option to command
*/
export declare function registerRemoveCommand(docstoreCommand: Command, addCommonOptions: (cmd: Command) => Command): void;