UNPKG

@getsolara/solara.js

Version:

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

4 lines 384 B
module.exports = { name: "$autocompleteOptionValue", description: "Returns the current value of the focused option in an autocomplete interaction.", takesBrackets: false, execute: async (context, args) => { if (!context.interaction?.isAutocomplete()) return "[Error: Not an autocomplete interaction]"; return context.interaction.options.getFocused(false)?.value ?? ""; } };