unibest/src/typings.d.ts

10 lines
140 B
TypeScript
Raw Normal View History

2023-12-23 11:27:00 +08:00
export type UserInfo = {
2024-01-16 10:15:20 +08:00
nickname: string
avatar: string
2024-01-19 17:28:04 +08:00
token?: string
2023-12-23 11:27:00 +08:00
}
2023-12-23 11:47:37 +08:00
export type UserItem = {
username: string
age: number
}