获取用户头像&昵称

This commit is contained in:
BTMuli
2023-05-21 16:05:23 +08:00
parent 64b4b4abcc
commit 821014c0a2
14 changed files with 215 additions and 85 deletions

View File

@@ -45,4 +45,21 @@ declare namespace BTMuli.User.Base {
stoken_v2?: string
stuid: string
}
/**
* @description 用户简略信息
* @since Alpha v0.2.0
* @interface BriefInfo
* @property {string} nickname 用户昵称
* @property {string} uid 用户 uid
* @property {string} avatar 用户头像
* @property {string} desc 用户简介
* @returns BriefInfo
*/
export interface BriefInfo {
nickname: string
uid: string
avatar: string
desc: string
}
}