UNPKG

shadow-core

Version:

A modular core framework for Discord bot development, providing commands, buttons, menus, middleware, and more.

10 lines (9 loc) 329 B
import { Client, StringSelectMenuInteraction } from "discord.js"; import { Menu } from "./menu"; export declare class MenuManager { private client; private static menus; constructor(client: Client); registerMenu(menu: Menu): void; handleInteraction(interaction: StringSelectMenuInteraction): Promise<void>; }