@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
13 lines (12 loc) • 595 B
TypeScript
import React from 'react';
import type { PaymentMethodAccountInfo } from '~/domains/paymentMethods';
import type { FunkitCheckoutQuoteResult } from '~/domains/quote';
interface DirectExecutionNotifCenterContentProps {
onClose: (options?: {
isNewDeposit?: boolean;
}) => void;
paymentMethodInfo: PaymentMethodAccountInfo;
quote: FunkitCheckoutQuoteResult | undefined;
}
declare const DirectExecutionNotifCenterContent: ({ onClose, paymentMethodInfo, quote, }: DirectExecutionNotifCenterContentProps) => React.JSX.Element;
export default DirectExecutionNotifCenterContent;