-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTypes.d.ts
More file actions
43 lines (36 loc) · 764 Bytes
/
Types.d.ts
File metadata and controls
43 lines (36 loc) · 764 Bytes
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
/**
* Types for database querys
*/
export type RowDataPacketLiveChat = {
guildName: string,
guildID: string,
channelID: string,
setupBy: string,
date: number | string | null | Date
};
export type RowDataPacketJoindate = {
username: string,
joindate: string | null
};
export type RowDataPacketPlaytime = {
username: string,
playtime: string | null
};
export type RowDataPacketKills = {
username: string,
kills: number,
deaths: number
};
export type RowDataPacketLastseen = {
username: string,
lastseen: string | null
};
export type RowDataPacketMsgcount = {
name: string,
cnt: number
};
export type RowDataPacketQuote = {
name: string,
message: string,
date: string | null
};