unibest/src/typings.d.ts
2023-12-23 11:47:37 +08:00

9 lines
122 B
TypeScript

export type UserInfo = {
username: string
token: string
}
export type UserItem = {
username: string
age: number
}