feat:增加 user 的 email、username 的展示

This commit is contained in:
YunaiV
2025-04-19 19:45:35 +08:00
parent 880aa37675
commit 1662598488
2 changed files with 7 additions and 4 deletions

View File

@@ -11,13 +11,17 @@ interface BasicUserInfo {
*/
nickname: string;
/**
* 用户id
* 用户 id
*/
userId: string;
/**
* 用户名
*/
username: string;
/**
* 用户邮箱
*/
email?: string;
}
interface AccessState {