UNPKG

@getsolara/solara.js

Version:

A lightweight and modular Discord bot framework built on discord.js v14, with truly optional feature packages.

4 lines 287 B
module.exports = { name: "$isSelectMenuInteraction", description: "Checks if the interaction is any select menu type. Returns true or false.", takesBrackets: false, execute: async (context, args) => { return context.interaction?.isAnySelectMenu?.().toString() ?? "false"; } };