-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.ts
61 lines (54 loc) · 1.04 KB
/
schema.ts
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
export type WorkExperience = {
title: string;
location: string;
period: string;
details: string[];
};
export type Experience = {
title: string;
subtitle: string;
details: string[];
};
export type ProjectExperience = {
role: string;
title: string;
period: string;
details: string[];
};
export type Education = {
degree: string;
school: string;
period: string;
details: string[];
};
export type AboutAPIData = {
intro: string[];
programmingSkill: string[];
framework: string[];
knowledge: string[];
workExperience: Experience[];
projectExperience: Experience[];
education: Education[];
};
export type ProjectMeta = {
id: number;
isExternal: boolean,
route: string;
previewImageUrl: string;
title: string;
tools: string[];
};
export type HomeAPIData = {
professionalProjects: ProjectMeta[];
sideProjects: ProjectMeta[];
};
export type ProjectArticle = {
id: number;
title: string;
description: string;
keywords: string;
type: string;
size: string;
language: string;
role: string;
};