-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtypings.d.ts
83 lines (76 loc) · 1.29 KB
/
typings.d.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// declare type for experience
declare type Experience = {
title: string;
company: string;
companyURL: string;
companyLogo: string;
location: string;
type: string;
date: string;
description: string;
skills: string[];
};
declare type Education = {
school: string;
schoolURL: string;
schoolLogo: string;
schoolLocation: string;
degree: string;
major: string;
minor: string;
date: string;
description: string;
activitiesandsocieties: string[];
};
declare type Resource = {
title: string;
url: string;
description: string;
category: string;
};
declare type Project = {
title: string;
description: string;
link: {
href: string;
label: string;
};
logo: {
src: string;
alt: string;
};
};
declare type Course = {
title: string;
author: string;
description: string;
link: {
href: string;
label: string;
};
logo: {
src: string;
alt: string;
};
publishedDate: string;
totalDuration: string;
};
declare type Color = {
id: string;
foreground: string;
background: string;
};
declare type CalEvent = {
title: string;
description: string;
location: string;
date: string;
startTime: string;
endTime: string;
color: Color;
link: string;
};
declare type Day = {
date: string;
events: CalEvent[];
};