From 7015cc18d1f56ade8f1e3b1c78b740f9b22f6fdf Mon Sep 17 00:00:00 2001 From: qkdflrgs Date: Fri, 4 Aug 2023 11:45:20 +0900 Subject: [PATCH] =?UTF-8?q?refactor/#67:=20=EB=8B=B4=EB=8B=B9=EC=9E=90=20?= =?UTF-8?q?=EB=A6=AC=EC=8A=A4=ED=8A=B8=20=ED=83=80=EC=9E=85=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/type.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/FE/src/type.tsx b/FE/src/type.tsx index 3d9a5d973..0e2a3fd9e 100644 --- a/FE/src/type.tsx +++ b/FE/src/type.tsx @@ -21,6 +21,7 @@ export type Label = { }; export type Milestone = { + id: number; title: string; }; @@ -36,5 +37,21 @@ export type IssueListProps = { }; export type ListDataProps = { + metadata: { + issueOpenCount: number; + issueCloseCount: number; + labelCount: number; + milestoneCount: number; + }; issues: IssueListProps[] | []; }; + +export type AssigneesList = { + id: number; + nickname: string; + profile_image_url: string; +}; + +export type AssigneesProps = { + assignees: AssigneesList[] | []; +};