UNPKG

askexperts

Version:

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

16 lines (15 loc) 556 B
import { Command } from "commander"; import { StreamCommandOptions } from "./index.js"; /** * Execute the stream create command * * @param options Command line options */ export declare function executeStreamCreateCommand(options: StreamCommandOptions): Promise<void>; /** * Register the create command * * @param streamCommand The parent stream command * @param addCommonOptions Function to add common options to command */ export declare function registerCreateCommand(streamCommand: Command, addCommonOptions: (cmd: Command) => Command): void;