unibest/src/typings.d.ts

9 lines
123 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
2023-12-23 11:27:00 +08:00
}
2023-12-23 11:47:37 +08:00
export type UserItem = {
username: string
age: number
}