mirror of
https://git.femboyfinancial.jp/james/FemScoreboard.git
synced 2024-11-22 02:32:02 -08:00
26 lines
475 B
TypeScript
26 lines
475 B
TypeScript
|
/**
|
||
|
* models.ts
|
||
|
* Database models
|
||
|
*/
|
||
|
|
||
|
interface ScoreboardMessageRow {
|
||
|
id: number,
|
||
|
author: number,
|
||
|
guild: number,
|
||
|
channel: number,
|
||
|
content: string,
|
||
|
reaction_1_count: number,
|
||
|
reaction_2_count: number,
|
||
|
reaction_3_count: number
|
||
|
}
|
||
|
|
||
|
interface ScoreboardUserRow {
|
||
|
id: number,
|
||
|
username: string,
|
||
|
reaction_1_total: number,
|
||
|
reaction_2_total: number,
|
||
|
reaction_3_total: number
|
||
|
}
|
||
|
|
||
|
export { ScoreboardMessageRow, ScoreboardUserRow };
|