UNPKG

atomicals-js

Version:
10 lines (9 loc) 391 B
import { CommandResultInterface } from "./command-result.interface"; import { CommandInterface } from "./command.interface"; export declare class WalletPhraseDecodeCommand implements CommandInterface { private phrase; private path; private passphrase?; constructor(phrase: string, path: string, passphrase?: string | undefined); run(): Promise<CommandResultInterface>; }