aboutsummaryrefslogtreecommitdiff
path: root/src/tasks/feature/updateStats.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tasks/feature/updateStats.d.ts')
-rw-r--r--src/tasks/feature/updateStats.d.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/tasks/feature/updateStats.d.ts b/src/tasks/feature/updateStats.d.ts
new file mode 100644
index 0000000..1274267
--- /dev/null
+++ b/src/tasks/feature/updateStats.d.ts
@@ -0,0 +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;
+ }>;
+}