Formatting with Prettier

This commit is contained in:
2026-02-27 02:48:25 -08:00
parent aff421f5d5
commit 99eab5a28f
25 changed files with 6044 additions and 5885 deletions

View File

@@ -4,26 +4,26 @@
*/
interface ScoreboardMessageRow {
id: number,
guild: number,
channel: number,
author: string,
content: string,
reaction_1_count: number,
reaction_2_count: number,
reaction_3_count: number,
reaction_4_count: number,
reaction_5_count: number
id: number;
guild: number;
channel: number;
author: string;
content: string;
reaction_1_count: number;
reaction_2_count: number;
reaction_3_count: number;
reaction_4_count: number;
reaction_5_count: number;
}
interface ScoreboardUserRow {
id: string,
username: string,
reaction_1_total: number,
reaction_2_total: number,
reaction_3_total: number,
reaction_4_total: number,
reaction_5_total: number
id: string;
username: string;
reaction_1_total: number;
reaction_2_total: number;
reaction_3_total: number;
reaction_4_total: number;
reaction_5_total: number;
}
export { ScoreboardMessageRow, ScoreboardUserRow };