@impossiblefinance/uikit
Version:
Set of UI components for impossible projects
8 lines (7 loc) • 358 B
TypeScript
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;