@ayanaware/bentocord
Version:
Bentocord is a Bento plugin designed to rapidly build fully functional Discord Bots.
9 lines (8 loc) • 339 B
TypeScript
import { ComponentInteraction, ComponentInteractionButtonData } from 'eris';
import { ComponentContext } from './ComponentContext';
export declare class ButtonContext extends ComponentContext {
interaction: ComponentInteraction & {
data: ComponentInteractionButtonData;
};
get data(): ComponentInteractionButtonData;
}