boyue-ui-admin-uniapp/src/typings.d.ts
2024-01-20 18:41:18 +08:00

12 lines
216 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export type UserInfo = {
nickname?: string
avatar?: string
/** 微信的 openid非微信没有这个字段 */
openid?: string
token?: string
}
export type UserItem = {
username: string
age: number
}