UNPKG

@funkit/connect

Version:

Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.

18 lines (17 loc) 753 B
import React from 'react'; import { HistoryContentPages } from '../../utils/checkoutHistory'; interface FunCheckoutHistoryContentProps { depositAddress: `0x${string}`; currentPage: HistoryContentPages; onHelp: () => void; onBackFromHelpPage: () => void; onClose: (opt?: { isNewDeposit?: boolean; }) => void; onAnimationComplete?: (callback: () => void) => void; /** Element ID to be used to mount the CTA action bar */ bottomBarId: string; isActiveCheckout: boolean; } export declare function FunCheckoutHistoryContent({ bottomBarId, currentPage, depositAddress, isActiveCheckout, onAnimationComplete, onBackFromHelpPage, onClose, onHelp, }: FunCheckoutHistoryContentProps): React.JSX.Element; export {};