xud
Version:
Exchange Union Daemon
18 lines (17 loc) • 558 B
TypeScript
import { Arguments, Argv } from 'yargs';
export declare const command = "closechannel <currency> [node_identifier] [--force] [fee]";
export declare const describe = "close any payment channels with a peer";
export declare const builder: (argv: Argv) => Argv<{
currency: string | undefined;
} & {
node_identifier: string | undefined;
} & {
force: boolean | undefined;
} & {
destination: string | undefined;
} & {
amount: number | undefined;
} & {
fee: number;
}>;
export declare const handler: (argv: Arguments<any>) => Promise<void>;