@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
14 lines (13 loc) • 584 B
TypeScript
import { FC } from 'react';
import { UserProfile } from '@dynamic-labs/types';
type CollectUserDataViewNoWalletProps = {
/**
* Which user field we should display as the user's identification.
* Ex: we can show his email when logging in with email or number when logging through sms.
*/
userIdentification: keyof UserProfile;
/** When passed, is shown instead of a user profile field as the user identification. */
userIdentificationOverride?: string;
};
export declare const CollectUserDataViewNoWallet: FC<CollectUserDataViewNoWalletProps>;
export {};