import { Bot } from "../../bot.ts"; /** Kick a member from the server */ export async function kickMember(bot: Bot, guildId: bigint, memberId: bigint, reason?: string) { await bot.rest.runMethod(bot.rest, "delete", bot.constants.endpoints.GUILD_MEMBER(guildId, memberId), { reason, }); }