UNPKG

bitcoin-cli-ts

Version:

Auto-generated Bitcoin client library for bitcoind JSON-RPC API

14 lines (13 loc) 279 B
import { Bitcoind } from '../../types'; type HelpParams = { bitcoind: Bitcoind; command?: string; }; /** * help ( "command" ) * * List all commands, or get help for a specified command. * */ export declare function help(params: HelpParams): Promise<any>; export {};