@hypernetlabs/web-ui
Version:
Web ui react components for hypernet protocol
13 lines • 572 B
TypeScript
import { PullPayment, PublicIdentifier, PaymentId, TokenInformation } from "@hypernetlabs/objects";
import React from "react";
interface IPullPaymentList {
pullPayments: PullPayment[];
publicIdentifier: PublicIdentifier;
tokenInformationList: TokenInformation[];
onAcceptPullPaymentClick: (paymentId: PaymentId) => void;
onPullFundClick: (paymentId: PaymentId) => void;
onRepairPaymentClick: (paymentId: PaymentId) => void;
}
export declare const PullPaymentList: React.FC<IPullPaymentList>;
export {};
//# sourceMappingURL=PullPaymentList.d.ts.map