UNPKG

@funkit/connect

Version:

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

18 lines (17 loc) 778 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; includeGenerateActionsParams?: boolean; } export declare function FunCheckoutHistoryContent({ depositAddress, currentPage, bottomBarId, onHelp, onBackFromHelpPage, onClose, onAnimationComplete, includeGenerateActionsParams, }: FunCheckoutHistoryContentProps): React.JSX.Element; export {};