mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-23 12:06:36 +08:00
24 lines
481 B
TypeScript
24 lines
481 B
TypeScript
/** 用户相关模块 */
|
|
declare namespace Auth {
|
|
/**
|
|
* 用户角色类型
|
|
* - super: 超级管理员
|
|
* - admin: 管理员
|
|
* - test: 测试
|
|
* - visitor: 游客
|
|
*/
|
|
type RoleType = 'super' | 'admin' | 'test' | 'visitor';
|
|
|
|
/** 用户信息 */
|
|
interface UserInfo {
|
|
/** 用户id */
|
|
userId: string;
|
|
/** 用户名 */
|
|
userName: string;
|
|
/** 用户手机号 */
|
|
userPhone: string;
|
|
/** 用户角色类型 */
|
|
userRole: RoleType;
|
|
}
|
|
}
|