UNPKG

atomicals-js

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