mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-16 19:28:17 +00:00
Update get_slash_command.ts
This commit is contained in:
@@ -5,12 +5,10 @@ import { endpoints } from "../../util/constants.ts";
|
|||||||
|
|
||||||
/** Fetchs the global command for the given Id. If a guildId is provided, the guild command will be fetched. */
|
/** Fetchs the global command for the given Id. If a guildId is provided, the guild command will be fetched. */
|
||||||
export async function getSlashCommand(commandId: string, guildId?: string) {
|
export async function getSlashCommand(commandId: string, guildId?: string) {
|
||||||
const result = await rest.runMethod(
|
return await rest.runMethod<ApplicationCommand>(
|
||||||
"get",
|
"get",
|
||||||
guildId
|
guildId
|
||||||
? endpoints.COMMANDS_GUILD_ID(applicationId, guildId, commandId)
|
? endpoints.COMMANDS_GUILD_ID(applicationId, guildId, commandId)
|
||||||
: endpoints.COMMANDS_ID(applicationId, commandId),
|
: endpoints.COMMANDS_ID(applicationId, commandId),
|
||||||
);
|
);
|
||||||
|
|
||||||
return result as ApplicationCommand;
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user