Files
discordeno/plugins/helpers/src/moveMember.ts
2022-09-17 15:46:03 +00:00

14 lines
286 B
TypeScript

import { BigString, Bot } from "../deps.ts";
/**
* Move a member from a voice channel to another.
*/
export function moveMember(
bot: Bot,
guildId: BigString,
memberId: BigString,
channelId: BigString,
) {
return bot.helpers.editMember(guildId, memberId, { channelId });
}