Skip to content
Permalink
Newer
Older
100644 81 lines (72 sloc) 1.42 KB
October 19, 2023 16:49
1
declare global {
October 19, 2023 16:49
2
module "*.css";
3
October 19, 2023 16:49
4
interface Env {
5
ASSETS: Fetcher;
October 19, 2023 16:49
6
D1: D1Database;
October 19, 2023 16:49
7
DATA: KVNamespace;
March 22, 2024 21:38
8
R2: R2Bucket;
October 20, 2023 12:35
9
October 19, 2023 16:49
10
[k: string]: string;
11
}
12
13
type FCMTokenResult = {
14
created_at: number;
15
event_id: string;
16
event_type: string;
17
token: string;
18
}
19
October 19, 2023 16:49
20
type RequestContext = EventContext<Env, string, { [k: string]: any }>;
October 19, 2023 16:49
21
October 19, 2023 16:49
22
interface AppealCardProps {
May 12, 2024 02:02
23
approved: number | null;
October 19, 2023 16:49
24
ban_reason: string;
October 19, 2023 16:49
25
created_at: number;
October 19, 2023 16:49
26
id: string;
27
learned: string;
October 20, 2023 12:35
28
open?: boolean;
October 19, 2023 16:49
29
reason_for_unban: string;
October 19, 2023 16:49
30
user: {
31
id: string;
32
username: string;
October 19, 2023 16:49
34
}
35
October 19, 2023 16:49
36
interface GameAppealProps {
October 19, 2023 16:49
37
created_at: number;
38
id: string;
May 13, 2024 15:01
39
reason_for_unban: string;
October 19, 2023 16:49
40
roblox_id: number;
41
roblox_username: string;
May 13, 2024 15:01
42
what_happened: string;
October 19, 2023 16:49
43
}
44
October 19, 2023 16:50
45
interface InactivityNoticeProps {
46
created_at: number;
47
decisions: {
48
DM?: boolean;
49
ET?: boolean;
50
FM?: boolean;
51
WM?: boolean;
52
};
October 19, 2023 16:50
53
departments: string[];
54
end: string;
November 4, 2023 13:42
55
hiatus?: boolean;
56
id: string;
October 21, 2023 00:05
57
open: boolean;
October 19, 2023 16:50
58
reason: string;
59
start: string;
60
user: {
61
id: string;
62
username: string;
63
};
64
}
65
October 19, 2023 16:49
66
interface ReportCardProps {
October 19, 2023 16:50
67
attachments: string[];
October 19, 2023 16:49
68
created_at: number;
October 19, 2023 16:50
69
description?: string;
October 19, 2023 16:49
70
id: string;
71
open: boolean;
October 19, 2023 16:49
72
target_ids: number[];
73
target_usernames: string[];
October 19, 2023 16:49
74
user?: {
75
id: string;
76
username: string;
October 19, 2023 16:49
78
}
October 19, 2023 16:49
79
}
80
81
export {};