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