Skip to content

Commit

Permalink
refactor/BibimMandu-IssueTacker#67: 담당자 리스트 타입 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
qkdflrgs committed Aug 4, 2023
1 parent 8666d78 commit 7015cc1
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions FE/src/type.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export type Label = {
};

export type Milestone = {
id: number;
title: string;
};

Expand All @@ -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[] | [];
};

0 comments on commit 7015cc1

Please sign in to comment.