Files
discordeno/helpers/members/unbanMember.ts
T
2022-02-11 09:49:53 +00:00

7 lines
292 B
TypeScript

import type { Bot } from "../../bot.ts";
/** Remove the ban for a user. Requires BAN_MEMBERS permission */
export async function unbanMember(bot: Bot, guildId: bigint, id: bigint) {
await bot.rest.runMethod<undefined>(bot.rest, "delete", bot.constants.endpoints.GUILD_BAN(guildId, id));
}