Skip to content

Commit 3ce3feb

Browse files
Merge pull request #111 from uwblueprint/maggie/fix-type-imports
[INTW26] - Fix typing import
2 parents b419383 + 6969efb commit 3ce3feb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/typescript/services/interfaces/applicantRecordService.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ApplicantRecordDTO } from "../../types";
1+
import { ApplicantRecordDTO, ApplicationStatus } from "../../types";
22

33
interface IApplicantRecordService {
44
updateApplicantStatus(
@@ -8,7 +8,7 @@ interface IApplicantRecordService {
88
bulkUpdateApplicantStatus(
99
applicantRecordIds: string[],
1010
status: ApplicationStatus,
11-
): Promise<ApplicantRecordDto[]>;
11+
): Promise<ApplicantRecordDTO[]>;
1212
setApplicantRecordFlag(
1313
applicantRecordId: string,
1414
flagValue: boolean,

0 commit comments

Comments
 (0)