Skip to main content
Example
export interface UsernamePolicy {
  isActive?: boolean
  maxLength: number;
  minLength: number;
  allowedFormats?: {
    usernameInEmailFormat?: boolean;
    usernameInPhoneFormat?: boolean;
  };
}

Properties

allowedFormats?
object

usernameInEmailFormat?

usernameInPhoneFormat?

isActive?
boolean
maxLength
number
minLength
number