mirror of
https://github.com/XFox111/PasswordGeneratorExtension.git
synced 2026-04-22 08:08:01 +03:00
3ecb6c4a31
- Migrated to WXT - Migrated to NPM - Added Insert & copy action - Added ESLint
15 lines
334 B
TypeScript
15 lines
334 B
TypeScript
export default class GeneratorOptions
|
|
{
|
|
public Length: number = 8;
|
|
|
|
public Special: boolean = true;
|
|
public Numeric: boolean = true;
|
|
public Lowercase: boolean = true;
|
|
public Uppercase: boolean = true;
|
|
|
|
public ExcludeSimilar: boolean = true;
|
|
public ExcludeAmbiguous: boolean = true;
|
|
|
|
public ExcludeRepeating: boolean = false;
|
|
}
|