We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b419383 + 6969efb commit 3ce3febCopy full SHA for 3ce3feb
backend/typescript/services/interfaces/applicantRecordService.ts
@@ -1,4 +1,4 @@
1
-import { ApplicantRecordDTO } from "../../types";
+import { ApplicantRecordDTO, ApplicationStatus } from "../../types";
2
3
interface IApplicantRecordService {
4
updateApplicantStatus(
@@ -8,7 +8,7 @@ interface IApplicantRecordService {
8
bulkUpdateApplicantStatus(
9
applicantRecordIds: string[],
10
status: ApplicationStatus,
11
- ): Promise<ApplicantRecordDto[]>;
+ ): Promise<ApplicantRecordDTO[]>;
12
setApplicantRecordFlag(
13
applicantRecordId: string,
14
flagValue: boolean,
0 commit comments