File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -564,15 +564,9 @@ export interface ParsedToken {
564
564
565
565
// @public
566
566
export interface PasswordPolicy {
567
- readonly allowedNonAlphanumericCharacters: string [];
568
- readonly customStrengthOptions: {
569
- readonly minPasswordLength? : number ;
570
- readonly maxPasswordLength? : number ;
571
- readonly containsLowercaseLetter? : boolean ;
572
- readonly containsUppercaseLetter? : boolean ;
573
- readonly containsNumericCharacter? : boolean ;
574
- readonly containsNonAlphanumericCharacter? : boolean ;
575
- };
567
+ readonly allowedNonAlphanumericCharacters? : string [];
568
+ // Warning: (ae-forgotten-export) The symbol "PasswordPolicyCustomStrengthOptions" needs to be exported by the entry point index.d.ts
569
+ readonly customStrengthOptions: PasswordPolicyCustomStrengthOptions ;
576
570
}
577
571
578
572
// @public
You can’t perform that action at this time.
0 commit comments