Files
discordeno/plugins/helpers/src/moveMember.ts
2022-01-26 19:02:34 +01:00

14 lines
265 B
TypeScript

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