/** * 定义用户信息类型 */ export type UserInfoType = { username: string; realName: string; phoneNumber: string; avatar: string; }