Files
knowai/types/user/search.ts
2025-11-23 22:26:39 +08:00

14 lines
279 B
TypeScript

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