Skip to main content
Extremely Popular
Go to Latest
File
import type { Bot } from "../../bot.ts";
/** Deletes the Stage instance. Requires the user to be a moderator of the Stage channel. */export async function deleteStageInstance(bot: Bot, channelId: bigint) { await bot.rest.runMethod(bot.rest, "DELETE", bot.constants.routes.STAGE_INSTANCE(channelId));}