small difference

This commit is contained in:
2024-02-03 00:39:27 +01:00
parent c135e4e98a
commit daff03e5f3
9 changed files with 151 additions and 4 deletions
+13
View File
@@ -0,0 +1,13 @@
export default class PasswordGenerator {
private options;
constructor(options: {
minLength: number;
maxLength: number;
minLower: number;
minUpper: number;
minNum: number;
minSpecial: number;
specialChars: string;
});
Generate(length?: number): string;
}