diff --git a/src/structures/ClientUser.js b/src/structures/ClientUser.js index e579fe2..080e1d7 100644 --- a/src/structures/ClientUser.js +++ b/src/structures/ClientUser.js @@ -187,7 +187,7 @@ class ClientUser extends User { * @typedef {Object} PresenceData * @property {PresenceStatusData} [status] Status of the user * @property {boolean} [afk] Whether the user is AFK - * @property {(ActivitiesOptions|CustomStatus|RichPresence|SpotifyRPC)[]} [activities] Activity the user is playing + * @property {ActivitiesOptions[]|CustomStatus[]|RichPresence[]|SpotifyRPC[]} [activities] Activity the user is playing * @property {number|number[]} [shardId] Shard id(s) to have the activity set on */ diff --git a/src/structures/Presence.js b/src/structures/Presence.js index f7352e0..b31d1e7 100644 --- a/src/structures/Presence.js +++ b/src/structures/Presence.js @@ -91,7 +91,7 @@ class Presence extends Base { if ('activities' in data) { /** * The activities of this presence - * @type {(Activity|CustomStatus|SpotifyRPC|RichPresence)[]} + * @type {Activity[]|CustomStatus[]|RichPresence[]|SpotifyRPC[]} */ this.activities = data.activities.map(activity => { if (fromClient === true) {