/** * LoginMethod Enum * Authentication method type * Used in: Login page, OTP verification */ const LoginMethod = Object.freeze({ EMAIL: 'email', PHONE: 'phone', }); export { LoginMethod };