Skip to main content
type AuthenticationMethods = {
  email?: EmailAuthentication;
  sms?: SmsAuthentication;
  google?: OAuth2Authentication;
  apple?: OAuth2Authentication;
  x?: OAuth2Authentication & {
     username?: string;
  };
  telegram?: TelegramAuthentication;
};
The authentication methods used by the user.

Properties

PropertyType
email?EmailAuthentication
sms?SmsAuthentication
google?OAuth2Authentication
apple?OAuth2Authentication
x?OAuth2Authentication & { username?: string; }
telegram?TelegramAuthentication