> ## 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.

# 型エイリアス: ScreenIdentifierType

<ParamField body="ScreenIdentifierType" type="email | phone | username">
  サインアップ時に使用できるユーザー識別子の種類を表します。

  * `'email'`: ユーザーはメールアドレスを入力します。
  * `'phone'`: ユーザーは電話番号を入力します。
  * `'username'`: ユーザーはユーザー名を選択します。

  この型は通常、どの識別子を有効にするかや、それらをどのように扱うかを定義するために、
  識別子の選択やサインアップ フローで使用されます。

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