export interface PasswordPolicy { enabled?: boolean; minLength?: number; policy: 'none' | 'low' | 'fair' | 'good' | 'excellent'; passwordSecurityInfo?: PasswordComplexityRule[]; }
Was this page helpful?