- Add ability to handle dropdown menus with the bot - Add a dropdown to the inventoryhelper - Add handler for the dropdown to navigate to that page #344 Reviewed-on: #365 Reviewed-by: VylpesTester <tester@vylpes.com> Co-authored-by: Ethan Lane <ethan@vylpes.com> Co-committed-by: Ethan Lane <ethan@vylpes.com>
5 lines
182 B
TypeScript
5 lines
182 B
TypeScript
import {StringSelectMenuInteraction} from "discord.js";
|
|
|
|
export abstract class StringDropdownEvent {
|
|
abstract execute(interaction: StringSelectMenuInteraction): Promise<void>;
|
|
}
|