Skip to main content
type VerifyEmailOTPResult = {
  user: User;
  message: string;
  isNewUser: boolean;
};
Result of verifyEmailOTP.

Properties

PropertyTypeDescription
userUserThe successfully logged-in user.
messagestringThe message to display to the user.
isNewUserbooleanWhether the user is newly signed up.