Skip to content

Commit 8290df9

Browse files
committed
refactor : 모델 import에 type 추가
1 parent dade372 commit 8290df9

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/models/admin/userDetail/userActivity.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { MyInquiries } from '../../activityLog';
2-
import { ApiCommonType } from '../../apiCommon';
1+
import type { MyInquiries } from '../../activityLog';
2+
import type { ApiCommonType } from '../../apiCommon';
33

44
export interface UserComment {
55
id: number;

src/models/admin/userDetail/userDetail.applicants.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { ApiCommonType, User } from '../../apiCommon';
2-
import { Career } from '../../applicant';
3-
import { SkillTag } from '../../tags';
1+
import type { ApiCommonType, User } from '../../apiCommon';
2+
import type { Career } from '../../applicant';
3+
import type { SkillTag } from '../../tags';
44

55
export interface Applicant {
66
id: number;

src/models/admin/userDetail/userProjectData.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { ApiCommonType } from '../../apiCommon';
2-
import { MethodTag, PositionTag, SkillTag } from '../../tags';
3-
import { AppliedProject, JoinedProject } from '../../userProject';
1+
import type { ApiCommonType } from '../../apiCommon';
2+
import type { MethodTag, PositionTag, SkillTag } from '../../tags';
3+
import type { AppliedProject, JoinedProject } from '../../userProject';
44

55
export interface BaseProject {
66
id: number;

0 commit comments

Comments
 (0)