/** * 登录状态枚举 */ export const LoginStatus = { /** 未登录(默认初值) */ NotLoggedIn: "notLoggedIn", /** 游客登录 */ Guest: "guest", /** Facebook OAuth 登录 */ Facebook: "facebook", /** Google OAuth 登录 */ Google: "google", /** 邮箱 + 密码登录 */ Email: "email", /** Apple ID 登录 */ Apple: "apple", } as const; export type LoginStatus = (typeof LoginStatus)[keyof typeof LoginStatus];