Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
export interface Identifier { /** * 識別子のタイプ(`'email'`、`'phone'`、`'username'` など)。 * * @see IdentifierType */ type: IdentifierType; /** * この識別子がサインアップに必須かどうか。 */ required: boolean; }
const emailIdentifier: Identifier = { type: 'email', required: true };
'email'
'phone'
'username'