Skip to main content
Example
export interface PasswordPolicy {
  enabled?: boolean;
  minLength?: number;
  policy: 'none' | 'low' | 'fair' | 'good' | 'excellent';
  passwordSecurityInfo?: PasswordComplexityRule[];
}

Properties

enabled?
boolean
minLength?
number
passwordSecurityInfo?
policy
"none" | "low" | "fair" | "good" | "excellent"