discord.js-selfbot-v13/src/structures/UserContextMenuCommandInteraction.js

30 lines
676 B
JavaScript
Raw Normal View History

2022-03-19 10:37:45 +00:00
'use strict';
const ContextMenuCommandInteraction = require('./ContextMenuCommandInteraction');
/**
* Represents a user context menu interaction.
* @extends {ContextMenuCommandInteraction}
*/
class UserContextMenuCommandInteraction extends ContextMenuCommandInteraction {
/**
* The user this interaction was sent from
* @type {User}
* @readonly
*/
get targetUser() {
return this.options.getUser('user');
}
/**
* The member this interaction was sent from
* @type {?(GuildMember|APIGuildMember)}
* @readonly
*/
get targetMember() {
return this.options.getMember('user');
}
}
module.exports = UserContextMenuCommandInteraction;