From 64b4aeec26d39bbeae96e08df7f6aec9497dcbce Mon Sep 17 00:00:00 2001 From: Snazzah Date: Thu, 3 Oct 2024 17:17:48 -0500 Subject: [PATCH] chore: link to FAQ page on CommandContext.options in JSDoc --- src/structures/interfaces/commandContext.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/structures/interfaces/commandContext.ts b/src/structures/interfaces/commandContext.ts index b5383b13..c3e49b61 100644 --- a/src/structures/interfaces/commandContext.ts +++ b/src/structures/interfaces/commandContext.ts @@ -16,7 +16,10 @@ export class CommandContext extends ModalSe readonly commandID: string; /** The ID of the target user/message. */ readonly targetID?: string; - /** The options given to the command. */ + /** + * The options given to the command. + * @see https://slash-create.js.org/#/docs/main/latest/general/context-options + */ readonly options: { [key: string]: any }; /** The subcommands the member used in order. */ readonly subcommands: string[];