> ## 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'`: ユーザーがusernameを選択します。

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

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