diff options
Diffstat (limited to 'src/tasks/feature/updateStats.d.ts')
-rw-r--r-- | src/tasks/feature/updateStats.d.ts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tasks/feature/updateStats.d.ts b/src/tasks/feature/updateStats.d.ts index 1274267..22e0308 100644 --- a/src/tasks/feature/updateStats.d.ts +++ b/src/tasks/feature/updateStats.d.ts @@ -1,10 +1,10 @@ import { BushTask } from '#lib'; import { Client } from 'discord.js'; export default class UpdateStatsTask extends BushTask { - constructor(); - exec(): Promise<void>; - static init(client: Client): Promise<{ - commandsUsed: bigint; - slashCommandsUsed: bigint; - }>; + constructor(); + exec(): Promise<void>; + static init(client: Client): Promise<{ + commandsUsed: bigint; + slashCommandsUsed: bigint; + }>; } |