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