@0xsequence/anypay-sdk
Version:
SDK for Anypay functionality
14 lines • 432 B
TypeScript
import type React from "react";
import type { TransactionState } from "../../anypay.js";
interface ReceiptProps {
txHash?: string;
chainId?: number;
onSendAnother: () => void;
onClose: () => void;
theme?: "light" | "dark";
renderInline?: boolean;
transactionStates?: TransactionState[];
}
export declare const Receipt: React.FC<ReceiptProps>;
export default Receipt;
//# sourceMappingURL=Receipt.d.ts.map