interface PasswordPolicy {
    minLength?: number;
    passwordSecurityInfo?: PasswordComplexityRule;
    policy:
        | "low"
        | "fair"
        | "good"
        | "excellent";
}

Properties

minLength?: number
passwordSecurityInfo?: PasswordComplexityRule
policy:
    | "low"
    | "fair"
    | "good"
    | "excellent"