UNPKG

@impossiblefinance/uikit

Version:
8 lines (7 loc) 358 B
import { KycInfo, Login, TokenBalance } from './types'; interface ReturnType { onPresentConnectModal: () => void; onPresentAccountModal: () => void; } declare const useWalletModal: (login: Login, logout: () => void, account?: string | undefined, balances?: TokenBalance[], kycInfo?: KycInfo | undefined) => ReturnType; export default useWalletModal;