askexperts
Version:
AskExperts SDK: build and use AI experts - ask them questions and pay with bitcoin on an open protocol
14 lines (13 loc) • 365 B
TypeScript
import { Command } from "commander";
/**
* Execute the invoice command
*
* @param amount The amount in satoshis
*/
export declare function executeInvoiceCommand(amount: number): Promise<void>;
/**
* Register the invoice command with the CLI
*
* @param program The commander program
*/
export declare function registerInvoiceCommand(program: Command): void;