7dfdef46a5
[vi] cảm giác đau khổ
30 lines
634 B
JavaScript
30 lines
634 B
JavaScript
'use strict';
|
|
|
|
const ContextMenuInteraction = require('./ContextMenuInteraction');
|
|
|
|
/**
|
|
* Represents a user context menu interaction.
|
|
* @extends {ContextMenuInteraction}
|
|
*/
|
|
class UserContextMenuInteraction extends ContextMenuInteraction {
|
|
/**
|
|
* 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 = UserContextMenuInteraction;
|