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