@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
19 lines (18 loc) • 780 B
TypeScript
import type { CheckoutHistoryItem } from '@funkit/api-base';
import React from 'react';
interface FunCheckoutHistoryDetailProps {
checkoutHistoryInfo: CheckoutHistoryItem | undefined;
onHelp: () => void;
onClose: (options?: {
isNewDeposit?: boolean;
}) => void;
onAnimationComplete?: (callback: () => void) => void;
/** Element ID to be used to mount the CTA action bar */
bottomBarId: string;
includeGenerateActionsParams?: boolean;
}
/**
* Processing info about a checkout history item (already created in backend)
*/
export declare function FunCheckoutHistoryDetail({ checkoutHistoryInfo, onHelp, onClose, onAnimationComplete, bottomBarId, includeGenerateActionsParams, }: FunCheckoutHistoryDetailProps): React.JSX.Element;
export {};