import type { UserProfile } from './profile'; // 用户搜索结果 export interface UserSearchRequest { keyword: string; } export interface UserSearchResponse { // 这里逻辑是对的(可惜暂时不打算做) users: Array total: number; }