Skip to content

Commit eb8b65b

Browse files
committed
[#41] ✨ add label types to team.d.ts and community.d.ts
1 parent a0a354d commit eb8b65b

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/types/community.types.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
export type CommunityCategory = 'SKILL' | 'CAREER' | 'OTHER'
2+
export type CommunityLabelCategory = '기술' | '커리어' | '기타'
23

34
export interface CommunityCreateRequest {
45
communityCategory?: CommunityCategory

src/types/team.types.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
export type TeamType = 'STUDY' | 'PROJECT' | 'MENTORING'
2+
export type TeamLabelType = '스터디' | '프로젝트' | '멘토링'
3+
export type TeamRecruitmentLabelType = '모집 중' | '모집 완료'
24
export type TeamPosition = string
35

46
export interface TeamCreateRequest {

0 commit comments

Comments
 (0)