// 定义用户类型
export interface User {
  id: number;
  name: string;
  email: string;
  age: number;
  password?: string;
  bio?: string;
}
