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

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 });
}