updated packages. fixed pnpm lock stuff.
Co-authored-by: PineappleFan <pineapplefanyt@gmail.com>
Co-authored-by: Skyler <skyler3665@gmail.com>
diff --git a/src/commands/settings/_meta.ts b/src/commands/settings/_meta.ts
index 1acc511..fa4a218 100644
--- a/src/commands/settings/_meta.ts
+++ b/src/commands/settings/_meta.ts
@@ -3,6 +3,14 @@
const name = "settings";
const description = "Change bot settings";
-const subcommand = await command(name, description, "settings", undefined, undefined, undefined, ["ManageGuild"]);
+const subcommand: Awaited<ReturnType<typeof command>> = await command(
+ name,
+ description,
+ "settings",
+ undefined,
+ undefined,
+ undefined,
+ ["ManageGuild"]
+);
export { name, description, subcommand as command };