Skip to content

Commit

Permalink
chore: link to FAQ page on CommandContext.options in JSDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Snazzah committed Oct 3, 2024
1 parent 422da8c commit 64b4aee
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/structures/interfaces/commandContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ export class CommandContext<ServerContext extends any = unknown> 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[];
Expand Down

0 comments on commit 64b4aee

Please sign in to comment.