From 466e796a1d2a9e2d3d8bb1a5820cf35eda0a1c40 Mon Sep 17 00:00:00 2001 From: Rodry <38259440+ImRodry@users.noreply.github.com> Date: Sat, 2 Oct 2021 12:38:59 +0100 Subject: [PATCH] docs(CommandInteractionResolvedData): fix key type (#6729) --- src/structures/BaseCommandInteraction.js | 10 +++++----- typings/index.d.ts | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/structures/BaseCommandInteraction.js b/src/structures/BaseCommandInteraction.js index 57e2bab46..ec6eb4fd7 100644 --- a/src/structures/BaseCommandInteraction.js +++ b/src/structures/BaseCommandInteraction.js @@ -78,11 +78,11 @@ class BaseCommandInteraction extends Interaction { /** * Represents the resolved data of a received command interaction. * @typedef {Object} CommandInteractionResolvedData - * @property {Collection} [users] The resolved users - * @property {Collection} [members] The resolved guild members - * @property {Collection} [roles] The resolved roles - * @property {Collection} [channels] The resolved channels - * @property {Collection} [messages] The resolved messages + * @property {Collection} [users] The resolved users + * @property {Collection} [members] The resolved guild members + * @property {Collection} [roles] The resolved roles + * @property {Collection} [channels] The resolved channels + * @property {Collection} [messages] The resolved messages */ /** diff --git a/typings/index.d.ts b/typings/index.d.ts index bb8e8293e..3a27e1f12 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -3510,11 +3510,11 @@ export interface CommandInteractionOption { } export interface CommandInteractionResolvedData { - users?: Collection; - members?: Collection; - roles?: Collection; - channels?: Collection; - messages?: Collection; + users?: Collection; + members?: Collection; + roles?: Collection; + channels?: Collection; + messages?: Collection; } export interface ConstantsClientApplicationAssetTypes {