generated from google-gemini/aistudio-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
32 lines (29 loc) · 653 Bytes
/
types.ts
File metadata and controls
32 lines (29 loc) · 653 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
export interface JobDetails {
companyName: string;
jobLink: string;
recruiterEmail: string;
description: string;
}
export interface VerificationResult {
trustScore: number;
status: 'safe' | 'warning' | 'risky';
analysis: {
websiteSecurity: string;
emailVerification: string;
descriptionAnalysis: string;
aiPrediction: string;
redFlags: string[];
};
details: {
isSecure: boolean;
isCorporateEmail: boolean;
domainMatchesCompany: boolean;
suspiciousKeywordsFound: string[];
}
}
export interface ReportData {
companyName: string;
reason: string;
evidenceText: string;
timestamp: string;
}