-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtypes.ts
More file actions
80 lines (70 loc) · 1.47 KB
/
Copy pathtypes.ts
File metadata and controls
80 lines (70 loc) · 1.47 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
export interface PersonalInfo {
name: string;
title: string;
email: string;
phone: string;
location: string;
linkedin: string;
github: string;
portfolio: string;
}
export interface Experience {
id: string;
title: string;
company: string;
location: string;
startDate: string;
endDate: string;
isCurrent: boolean;
responsibilities: string[];
}
export interface Education {
id: string;
degree: string;
university: string;
location: string;
startDate: string;
endDate: string;
}
export interface Project {
id: string;
name: string;
techStack: string[];
link: string;
description: string;
}
export interface Certification {
id: string;
name: string;
provider: string;
date: string;
link?: string;
}
export interface CustomSection {
id: string;
title: string;
content: string;
}
export type Section = 'summary' | 'experience' | 'education' | 'projects' | 'skills' | 'certifications';
export interface ResumeData {
personalInfo: PersonalInfo;
summary: string;
experience: Experience[];
education: Education[];
projects: Project[];
skills: string[];
certifications: Certification[];
customSections: CustomSection[];
sectionOrder: string[];
}
export type Template = 'TemplateA' | 'TemplateB';
export interface AtsAnalysis {
score: number;
missingKeywords: string[];
summarySuggestions: string;
experienceSuggestions: {
experienceId: string;
suggestions: string[];
}[];
weakPhrases: string[];
}