mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 01:10:07 +00:00
7 lines
233 B
TypeScript
7 lines
233 B
TypeScript
import { Bot } from "../deps.ts";
|
|
|
|
/** Kicks a member from a voice channel */
|
|
export function disconnectMember(bot: Bot, guildId: bigint, memberId: bigint) {
|
|
return bot.helpers.editMember(guildId, memberId, { channelId: null });
|
|
}
|