-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: 친구 목록 조회 API profileImage Enum 필드값 추가 대응 * fix: 친구목록 조회 무한 스크롤 수정 * fix: 친구 목록 조회 탭 삭제하기 CTA 버튼 분기처리
- Loading branch information
1 parent
f588dd2
commit 023723c
Showing
3 changed files
with
21 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
import type { ProfileEnum } from '../common'; | ||
|
||
export interface FriendshipData { | ||
userId: number; | ||
nickname: string; | ||
ingredientCount: number; | ||
profileImage: ProfileEnum; | ||
} | ||
|
||
export type FriendshipSortType = 'nickname' | 'createdAt'; |