mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-02 08:50:07 +00:00
* Create deno.json * run format * run format * ci: only check formatting * f * Update settings.json * Update settings.json
14 lines
266 B
TypeScript
14 lines
266 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 });
|
|
}
|