UNPKG

@funkit/connect

Version:

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

22 lines (21 loc) 944 B
import type { CheckoutHistoryItem, CheckoutState } from '@funkit/api-base'; import React from 'react'; interface StatusTagProps { state: CheckoutState; refundState: CheckoutHistoryItem['refundState']; isDelayed: boolean; } export declare function StatusTag({ state, refundState, isDelayed }: StatusTagProps): React.JSX.Element; interface FunTxSummaryHistoryProps { checkoutHistoryItem: CheckoutHistoryItem | undefined; isDelayed?: boolean; } export declare function FunTxSummaryHistory({ checkoutHistoryItem, isDelayed, }: FunTxSummaryHistoryProps): React.JSX.Element; export declare function OrderDetail({ checkoutHistoryItem, }: { checkoutHistoryItem: CheckoutHistoryItem | undefined; }): React.JSX.Element; interface OrderDetailSectionProps { checkoutHistoryItem: CheckoutHistoryItem; } export declare const OrderDetailSection: ({ checkoutHistoryItem, }: OrderDetailSectionProps) => React.JSX.Element; export {};