// 最小用户信息 export interface User{ id: string; username: string; } export interface UserProfile{ user: User; avatar: string; introduction: string; level: string; }