mirror of
https://gitee.com/myxzgzs/boyue-ui-admin-uniapp
synced 2025-08-09 17:02:44 +08:00
12 lines
216 B
TypeScript
12 lines
216 B
TypeScript
export type UserInfo = {
|
||
nickname?: string
|
||
avatar?: string
|
||
/** 微信的 openid,非微信没有这个字段 */
|
||
openid?: string
|
||
token?: string
|
||
}
|
||
export type UserItem = {
|
||
username: string
|
||
age: number
|
||
}
|