mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-16 03:18:17 +00:00
19 lines
547 B
TypeScript
19 lines
547 B
TypeScript
import { rest } from "../../rest/rest.ts";
|
|
import { endpoints } from "../../util/constants.ts";
|
|
import { requireBotGuildPermissions } from "../../util/permissions.ts";
|
|
|
|
/** Delete the given emoji. Requires the MANAGE_EMOJIS permission. Returns 204 No Content on success. */
|
|
export async function deleteEmoji(
|
|
guildId: bigint,
|
|
id: bigint,
|
|
reason?: string
|
|
) {
|
|
await requireBotGuildPermissions(guildId, ["MANAGE_EMOJIS"]);
|
|
|
|
return await rest.runMethod<undefined>(
|
|
"delete",
|
|
endpoints.GUILD_EMOJI(guildId, id),
|
|
{ reason }
|
|
);
|
|
}
|