swc/crates/swc_bundler/tests/.cache/deno/4d976ca8b317b06c4d620bfa9b0f73139bcdf925.ts
2021-11-09 20:42:49 +09:00

11 lines
350 B
TypeScript

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/helpers/guilds/leave_guild.ts
import { rest } from "../../rest/rest.ts";
import { endpoints } from "../../util/constants.ts";
/** Leave a guild */
export async function leaveGuild(guildId: bigint) {
return await rest.runMethod<undefined>("delete", endpoints.GUILD_LEAVE(guildId));
}