UNPKG
amesu
Version:
latest (2.2.0)
2.2.0
2.1.9
2.1.8
2.1.7
2.1.6
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
2.0.0-alpha.8
2.0.0-alpha.7
2.0.0-alpha.6
2.0.0-alpha.5
2.0.0-alpha.4
2.0.0-alpha.3
2.0.0-alpha.2
2.0.0-alpha.1
1.3.0
1.2.0
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.1
1.0.0
0.0.0
Node.js SDK for QQ Bot.
github.com/xueelf/amesu
xueelf/amesu
amesu
/
lib
/
model
/
user.d.ts
15 lines
(14 loc)
•
457 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
interface
User
{
/** 用户 id */
id:
string
;
/** 用户名 */
username:
string
;
/** 用户头像地址 */
avatar:
string
;
/** 是否是机器人 */
bot:
boolean
;
/** 特殊关联应用的 openid,需要特殊申请并配置后才会返回。 */
union_openid:
string
;
/** 机器人关联的互联应用的用户信息,与 union_openid 关联的应用是同一个。 */
union_user_account:
string
; }