fixed loads of typing errors
diff --git a/src/utils/client.ts b/src/utils/client.ts
index 41cdbca..5286814 100644
--- a/src/utils/client.ts
+++ b/src/utils/client.ts
@@ -33,7 +33,7 @@
         check: (interaction: Interaction, partial: boolean) => Promise<boolean> | boolean,
         autocomplete: (interaction: AutocompleteInteraction) => Promise<string[]>
     } | undefined,{name: string, description: string}]> = {};
-    fetchedCommands: Collection<string, Discord.ApplicationCommand> = new Collection();
+    fetchedCommands = new Collection<string, Discord.ApplicationCommand>();
     constructor(database: typeof NucleusClient.prototype.database) {
         super({ intents: [
             GatewayIntentBits.Guilds,