xud
Version:
Exchange Union Daemon
11 lines (10 loc) • 353 B
TypeScript
import { Arguments } from 'yargs';
export declare const command = "restore [backup_directory]";
export declare const describe = "restore an xud instance from seed";
export declare const builder: {
backup_directory: {
description: string;
type: string;
};
};
export declare const handler: (argv: Arguments<any>) => Promise<void>;