UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

16 lines (15 loc) 399 B
import { Job } from "./job.entity"; export declare class JobRecommendation { id: number; jobId: number; job: Job; freelancerId: number; clientId: number; matchScore: number; matchScoreSummary?: Record<string, any>; matchingSkills: string[]; matchingSkillsCount: number; requiredSkills: string[]; requiredSkillsCount: number; lastCalculatedAt: Date; }