mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 13:23:34 +00:00
* Create and use GeneratorOptions Selection between `password`and `username` * Use PasswordGeneratorOptions * Declare and use UsernameGeneratorOptions
4 lines
70 B
TypeScript
4 lines
70 B
TypeScript
export type GeneratorOptions = {
|
|
type?: "password" | "username";
|
|
};
|