UNPKG

xud

Version:
10 lines (9 loc) 482 B
import { Arguments, Argv } from 'yargs'; import { TradingLimitsResponse } from '../../proto/xudrpc_pb'; export declare const displayLimits: (limits: TradingLimitsResponse.AsObject) => void; export declare const command = "tradinglimits [currency]"; export declare const describe = "trading limits for a given currency"; export declare const builder: (argv: Argv) => Argv<{ currency: string | undefined; }>; export declare const handler: (argv: Arguments<any>) => Promise<void>;