UNPKG

beeline-cli

Version:

A terminal wallet for the Hive blockchain - type, sign, rule the chain

20 lines 1.16 kB
import { Command } from '@oclif/core'; export default class Withdraw extends Command { static description: string; static examples: string[]; static flags: { from: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>; node: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>; confirm: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>; mock: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>; }; static args: { amount: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>; currency: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>; to: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>; memo: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>; }; run(): Promise<void>; private simulateWithdrawal; } //# sourceMappingURL=withdraw.d.ts.map