File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -564,7 +564,7 @@ export interface ParsedToken {
564
564
565
565
// @public
566
566
export interface PasswordPolicy {
567
- readonly allowedNonAlphanumericCharacters? : string [];
567
+ readonly allowedNonAlphanumericCharacters: string [];
568
568
readonly customStrengthOptions: {
569
569
readonly minPasswordLength? : number ;
570
570
readonly maxPasswordLength? : number ;
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ List of characters that are considered non-alphanumeric during validation.
32
32
<b >Signature :</b >
33
33
34
34
` ` ` typescript
35
- readonly allowedNonAlphanumericCharacters? : string[];
35
+ readonly allowedNonAlphanumericCharacters: string[];
36
36
` ` `
37
37
38
38
## PasswordPolicy .customStrengthOptions
Original file line number Diff line number Diff line change @@ -1291,7 +1291,7 @@ export interface PasswordPolicy {
1291
1291
/**
1292
1292
* List of characters that are considered non-alphanumeric during validation.
1293
1293
*/
1294
- readonly allowedNonAlphanumericCharacters ? : string [ ] ;
1294
+ readonly allowedNonAlphanumericCharacters : string [ ] ;
1295
1295
}
1296
1296
1297
1297
/**
You can’t perform that action at this time.
0 commit comments