interface PasswordRule {
    lowercaseChar?: "ALLOWED" | "REQUIRED";
    maxLength: number;
    minLength: number;
    numberChar?: "ALLOWED" | "REQUIRED";
    symbolChar?: "ALLOWED" | "REQUIRED";
    uppercaseChar?: "ALLOWED" | "REQUIRED";
}

Properties

lowercaseChar?: "ALLOWED" | "REQUIRED"
maxLength: number
minLength: number
numberChar?: "ALLOWED" | "REQUIRED"
symbolChar?: "ALLOWED" | "REQUIRED"
uppercaseChar?: "ALLOWED" | "REQUIRED"

Generated using TypeDoc