-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathtypes.d.ts
More file actions
93 lines (84 loc) · 1.55 KB
/
types.d.ts
File metadata and controls
93 lines (84 loc) · 1.55 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
type ProfileData = {
bookmarked: Snippet[];
ratings: Rating[];
snippets: Snippet[];
contribution: number;
totalSnippetsPoints: number;
totalBookmarkedPoints: number;
totalRatingsPoints: number;
};
export interface Notification {
_id: string;
type: string;
snippetId?: string;
message: string;
status: "unread" | "read";
createdAt: string;
}
export interface Contributor {
id: number;
login: string;
avatar_url: string;
html_url: string;
contributions: number;
type: string;
}
export interface RepoStats {
stars: number;
forks: number;
openIssues: number;
}
export interface User {
id: string;
name: string;
email: string;
image: string;
createdAt: string;
}
export interface Snippet {
_id: any;
title: string;
language: string;
code: string;
description?: string;
tags: string[];
category: string;
difficulty: string;
usage: string;
userId: string;
bookmarkedBy: string[];
}
export interface Comment {
_id: string;
snippetId: string;
userId: string;
content: string;
createdAt: string;
updatedAt: string;
}
type Rating = {
_id: string;
snippetId: Snippet;
userId: string;
rating: number;
averageRating: number;
};
export interface SnippetRequest {
_id: string;
title: string;
language: string;
code: string;
description?: string;
tags?: string[];
category?: string;
difficulty?: string;
usage?: string;
approved: boolean;
}
export interface DeleteRequest {
_id: string;
snippetId: string;
name: string;
deletionRequestedBy: string;
reason: string;
}