mirror of
https://github.com/ente-io/ente.git
synced 2025-06-14 20:41:47 +00:00
6 lines
102 B
TypeScript
6 lines
102 B
TypeScript
export enum PasswordStrength {
|
|
WEAK = "WEAK",
|
|
MODERATE = "MODERATE",
|
|
STRONG = "STRONG",
|
|
}
|