@sofaws/dapp-core
Version:
A library to hold the main logic for a dapp on the Elrond Network
17 lines • 783 B
TypeScript
/// <reference types="react" />
import { WithClassnameType } from '../../types';
export interface WalletConnectLoginModalPropsType extends WithClassnameType {
lead?: string;
title?: string;
legacyMessage?: string;
logoutRoute?: string;
callbackRoute?: string;
loginButtonText: string;
wrapContentInsideModal?: boolean;
isWalletConnectV2?: boolean;
token?: string;
onLoginRedirect?: (callbackRoute: string) => void;
onClose?: () => void;
}
export declare const WalletConnectLoginContainer: ({ callbackRoute, loginButtonText, title, logoutRoute, className, lead, legacyMessage, wrapContentInsideModal, isWalletConnectV2, token, onClose, onLoginRedirect }: WalletConnectLoginModalPropsType) => JSX.Element;
//# sourceMappingURL=index.d.ts.map