Update get_slash_command.ts

This commit is contained in:
ITOH
2021-04-23 23:27:52 +02:00
parent 9831ccf76e
commit f27d586811
+1 -3
View File
@@ -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;
} }