Skip to main content

Documentation Index

Fetch the complete documentation index at: https://auth0-feat-ionic-capacitor-quickstart-modernization.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

The result of validating a username against one or more rules.
Example
export interface UsernameValidationResult {
  isValid: boolean;
  errors: UsernameValidationError[];
}

Properties

isValid
boolean
required
Indicates whether the username passed all validation rules.
An array of UsernameValidationError objects representing the individual rules that failed, if any.This array is empty if UsernameValidationResult.isValid is true.