UNPKG

myathhhh

Version:

Atomicals Javascript Library and CLI - atomicals.xyz

15 lines (14 loc) 668 B
import { ElectrumApiInterface } from "../api/electrum-api.interface"; import { CommandInterface } from "./command.interface"; import { BaseRequestOptions } from "../interfaces/api.interface"; import { IWalletRecord } from "../utils/validate-wallet-storage"; export declare class DeleteInteractiveCommand implements CommandInterface { private electrumApi; private options; private atomicalId; private files; private owner; private funding; constructor(electrumApi: ElectrumApiInterface, options: BaseRequestOptions, atomicalId: string, files: string[], owner: IWalletRecord, funding: IWalletRecord); run(): Promise<any>; }