From f51ea86a609ff03ca3a8f37d5db066ae307b9d6b Mon Sep 17 00:00:00 2001 From: hyeseon han Date: Sat, 24 Feb 2024 00:55:48 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20ShareSortType,=20ShareStatusType=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/types/friendship/index.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/types/friendship/index.d.ts b/src/types/friendship/index.d.ts index e86ba8a..769f677 100644 --- a/src/types/friendship/index.d.ts +++ b/src/types/friendship/index.d.ts @@ -8,3 +8,7 @@ export interface FriendshipData { } export type FriendshipSortType = 'nickname' | 'createdAt'; + +export type ShareSortType = 'dueDate' | 'registeredDate'; + +export type ShareStatusType = 'SHARE_START' | 'SHARE_IN_PROGRESS' | 'SHARE_END';