Skip to main content
type EmailAuthentication = {
  type: "email";
  email: string;
};
The email authentication method.

Properties

PropertyTypeDescription
type"email"The type of authentication method.
emailstringThe email address of the user.