-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.d.ts
89 lines (82 loc) · 1.51 KB
/
types.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
84
85
86
87
88
89
type Post = {
_id: string;
user: string;
userInfo: UserInfo
title: string;
photo?: string;
liked: boolean;
likes: string[] | [];
comments: string[] | [];
location: string;
createdAt: string;
updatedAt: string;
__v: number;
};
type User = {
_id: string;
userInfo: UserInfo
connections: User[] | [];
skills: string[];
bookmarkedPosts: string[] | [];
email: string;
experience: ExperienceData[];
education: EducationData[];
preferredPositions: any[];
createdAt: string;
updatedAt: string;
__v: number;
about: string;
jobTitle?: string;
location: string;
};
type ForumPost = {
_id: string;
title: string;
creator: string;
userInfo: UserInfo
description: string;
likes: string[] | [];
comments: Comment[] | string[];
category: string;
views: number;
visitedBy: string[] | [];
createdAt: string;
updatedAt: string;
__v: number;
};
type CommentType = {
_id: string;
post: string;
user: string;
userInfo: UserInfo
commentText: string;
likes: string[] | [];
createdAt: string;
updatedAt: string;
__v: number;
};
type EducationData = {
schoolName: string,
course: string,
summary: string,
_id: string
}
type ExperienceData = {
position: string,
company: string,
summary: string,
location: string,
_id: string
}
type UserInfo = {
_id: string;
email: string;
firstName: string;
adminNo: string;
lastName: string;
emailVerified: boolean;
photo: string;
createdAt: string;
updatedAt: string;
__v: number;
};