@ayanaware/bentocord
Version:
Bentocord is a Bento plugin designed to rapidly build fully functional Discord Bots.
11 lines (10 loc) • 422 B
TypeScript
import { ComponentInteraction, ComponentInteractionSelectMenuData } from 'eris';
import { ComponentContext } from './ComponentContext';
export declare class SelectContext extends ComponentContext {
interaction: ComponentInteraction & {
data: ComponentInteractionSelectMenuData;
};
get data(): ComponentInteractionSelectMenuData;
get values(): Array<string>;
hasValue(value: string): boolean;
}