-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
65 lines (58 loc) · 1.3 KB
/
types.ts
File metadata and controls
65 lines (58 loc) · 1.3 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
export type Role =
| 'AI Engineer'
| 'Full-stack SDE'
| 'Back-end SDE'
| 'Front-end SDE'
| 'Machine Learning Engineer'
| 'Data Engineer'
| 'Data Scientist'
| 'Data Analyst'
| 'Prompt Engineer'
| 'DevOps Engineer'
| 'Mobile Developer';
export type Difficulty = 'Low' | 'Medium' | 'High';
export interface ProjectRequest {
role: Role;
industry: string;
difficulties: Difficulty[];
}
export type ProjectType = 'Practical' | 'Creative';
export interface ProjectIdea {
id: string;
title: string;
tagline: string;
type: ProjectType;
difficulty: Difficulty; // Added to track which level this project belongs to
description: string;
keyTech: string[];
estimatedHours: number;
}
export interface ProjectBlueprint {
projectId: string;
title: string;
overview: string;
techStack: {
category: string;
tools: string[];
}[];
architecture: string;
coreFeatures: string[];
implementationSteps: {
phase: string;
description: string;
}[];
challengesAndSolutions: {
challenge: string;
solution: string;
}[];
}
export interface InterviewQA {
question: string;
answer: string;
category: 'Technical' | 'Behavioral' | 'Project-Specific';
keyPoints: string[];
}
export interface InterviewPrep {
projectId: string;
questions: InterviewQA[];
}