Skip to main content
Describes a configured identifier field (e.g. email, phone, or username) for use in a signup form or authentication flow.
Example
export interface Identifier {
  type: IdentifierType;
  required: boolean;
}

Properties

The type of identifier, such as 'email', 'phone', or 'username'.
required
boolean
required
Whether this identifier is required for signup.