UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

22 lines (21 loc) 545 B
declare enum InterviewInviteCandidateType { SHORTLISTED = "SHORTLISTED", APPLICANTS = "APPLICANTS", RECOMMENDED = "RECOMMENDED", NEW = "NEW" } export declare class ExistingCandidateDto { id: string; type: InterviewInviteCandidateType; } export declare class NewCandidateDto { name: string; email: string; type: InterviewInviteCandidateType; } export declare class SendInterviewInviteDto { jobId: string; existingCandidates?: ExistingCandidateDto[]; newCandidates?: NewCandidateDto[]; } export {};