Skip to content

Commit

Permalink
refactor/BibimMandu-IssueTacker#158: 필터 타입 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
qkdflrgs committed Aug 11, 2023
1 parent 024e8c3 commit 2719db7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion FE/src/type.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ export type Milestone = {
progress: number;
};

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

export type IssueListProps = {
id: number;
title: string;
Expand Down Expand Up @@ -56,7 +61,7 @@ export type AssigneesList = {
};

export type AssigneesProps = {
assignees: AssigneesList[] | [];
assignees: AssigneesList[] | null;
};

export type FetchedLabels = {
Expand Down

0 comments on commit 2719db7

Please sign in to comment.