From f8987499f605c9cf6a47b328dea3ef2d26959ca3 Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Tue, 17 May 2022 16:18:14 -0500 Subject: [PATCH] refactor: make description optional --- src/handler/structures/module.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/handler/structures/module.ts b/src/handler/structures/module.ts index 9f33d6c..66e205b 100644 --- a/src/handler/structures/module.ts +++ b/src/handler/structures/module.ts @@ -47,6 +47,7 @@ export type ContextMenuUser = Override[]; plugins?: (CommandPlugin)[]; + description? : string; execute: (ctx: UserContextMenuCommandInteraction) => Awaitable }> @@ -54,6 +55,7 @@ export type ContextMenuMsg = Override[]; plugins?: CommandPlugin[]; + description? : string; execute: (ctx: MessageContextMenuCommandInteraction) => Awaitable }>;