UNPKG

atomicals-js

Version:
12 lines (11 loc) 482 B
import { CommandResultInterface } from "./command-result.interface"; import { CommandInterface } from "./command.interface"; export declare class WalletInitCommand implements CommandInterface { private phrase; private path; private passphrase?; private n?; constructor(phrase: string | undefined, path: string, passphrase?: string | undefined, n?: number | undefined); run(): Promise<CommandResultInterface>; walletExists(): Promise<true | undefined>; }