-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
28 lines (25 loc) · 805 Bytes
/
types.ts
File metadata and controls
28 lines (25 loc) · 805 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
export interface Experience {
company: string;
title: string;
dates: string; // e.g., "Jan 2020 - Present"
description: string; // Rewritten bullet points with metrics
}
export interface QuickGuide {
headline: string;
about: string;
experience: string;
skills: string;
general?: string; // General advice for the entire staging area
}
export interface OptimizedProfileData {
headline_options: string[]; // Array of 3 distinct, high-impact headlines
about_section: string; // A compelling first-person narrative
experience: Experience[]; // Array of job experiences
skills: string[]; // Array of 50 top relevant skills
quick_guide: QuickGuide; // A short, helpful tip for each section
}
export interface FieldConstraint {
max: number;
required: boolean;
min?: number;
}