mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-02 17:00:08 +00:00
14 lines
286 B
TypeScript
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 });
|
|
}
|