@dapplets/dapplet-extension
Version:
The Bridge to the Augmented Web.
15 lines (14 loc) • 447 B
TypeScript
import { FC } from 'react';
export interface ProfileProps {
handleWalletConnect: () => void;
isWalletLength: boolean;
handleWalletLengthConnect: () => void;
isOverlay: boolean;
isMini: boolean;
setOpenWallet: () => void;
isOpenWallet: boolean;
setOpenWalletMini: () => void;
setConnectedDescriptors: (x: []) => void;
setSelectedWallet: (x: string) => void;
}
export declare const Profile: FC<ProfileProps>;