> ## Documentation Index
> Fetch the complete documentation index at: https://translations.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Alias de tipo: ScreenIdentifierType

<ParamField body="ScreenIdentifierType" type="email | phone | username">
  Representa los tipos de identificadores de usuario que pueden usarse durante el registro.

  * `'email'`: El usuario proporcionará una dirección de correo electrónico.
  * `'phone'`: El usuario proporcionará un número de teléfono.
  * `'username'`: El usuario elegirá un username.

  Este tipo se usa normalmente en flujos de selección de identidad o de registro
  para definir qué identificadores están habilitados y cómo se comportan.

  ```ts Example theme={null}
  const type: IdentifierType = 'email';
  ```
</ParamField>
