UNPKG

@golem-sdk/golem-js

Version:

NodeJS and WebBrowser SDK for building apps running on Golem Network

9 lines (8 loc) 416 B
import { IInvoiceRepository, Invoice } from "../../../payment/invoice"; import { MarketApi, PaymentApi } from "ya-ts-client"; export declare class InvoiceRepository implements IInvoiceRepository { private readonly paymentClient; private readonly marketClient; constructor(paymentClient: PaymentApi.RequestorService, marketClient: MarketApi.RequestorService); getById(id: string): Promise<Invoice>; }