Skip to content
hiei.js

SlashCommand

An application command invoked by typing / in a text channel.

Parameters

ParameterTypeDefaultRequiredDescription
nameStringnoneCommand name
descriptionStringnoneCommand description
optionsArraynoneCommand options
cooldownNumbernoneCommand cooldown defined in milliseconds
defaultMemberPermissionsPermissionsBitField0The permissions this command will have when your app is installed

Methods

onCooldown()

Runs if this command is on cooldown. Great for giving each command a unique cooldown message.

ParameterTypeDescription
interactionChatInputCommandInteractionThe interaction that invoked this command
cooldownCooldownContains the member and timestamp from the last time the command was used
remainingStringTime remaining until the cooldown expires

run()

Runs when this command is invoked.

ParameterTypeDescription
interactionChatInputCommandInteractionThe interaction that invoked this command

Further reading