@auth0/auth0-acul-react - v1.0.0
    Preparing search index...

    Interface UsernameValidationResult

    The result of validating a username against one or more rules.

    interface UsernameValidationResult {
        isValid: boolean;
        errors: UsernameValidationError[];
    }
    Index

    Properties

    Properties

    isValid: boolean

    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.