@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
14 lines (13 loc) • 389 B
TypeScript
import React from 'react';
export declare enum ConnectStep {
SIGNIN_PRIMARY = 0,
PENDING_WALLET = 1,
ERROR_WEB3 = 2
}
interface FunConnectOptionsProps {
onClose: () => void;
initialScreenOnBack?: () => void;
walletsOnly?: boolean;
}
export declare function FunConnectOptions({ onClose, initialScreenOnBack, }: FunConnectOptionsProps): React.JSX.Element;
export {};