mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 08:33:30 +01:00
13 lines
235 B
JavaScript
13 lines
235 B
JavaScript
const Action = require('./Action');
|
|
|
|
class GuildMemberGetAction extends Action {
|
|
handle(guild, data) {
|
|
const member = guild._addMember(data, false);
|
|
return {
|
|
member,
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = GuildMemberGetAction;
|