unibest/src/typings.d.ts

9 lines
122 B
TypeScript
Raw Normal View History

2023-12-23 11:27:00 +08:00
export type UserInfo = {
username: string
token: string
}
2023-12-23 11:47:37 +08:00
export type UserItem = {
username: string
age: number
}