UNPKG

atomicals-js

Version:
10 lines (9 loc) 431 B
import { ElectrumApiInterface } from "../api/electrum-api.interface"; import { AtomicalsGetFetchType, CommandInterface } from "./command.interface"; export declare class GetCommand implements CommandInterface { private electrumApi; private atomicalAliasOrId; private fetchType; constructor(electrumApi: ElectrumApiInterface, atomicalAliasOrId: string, fetchType?: AtomicalsGetFetchType); run(): Promise<any>; }