nhandler
Version:
The easy to use, all-in-one command, event and component handler.
8 lines (7 loc) • 337 B
TypeScript
import { Client } from "discord.js";
import { ContextMenuHandler } from "../classes/ContextMenuHandler";
export type ContextMenuHandlerCreationOptions<T> = {
client: T;
debug?: true;
};
export declare const createContextMenu: <T = Client<boolean>>({ client, debug, }: ContextMenuHandlerCreationOptions<T>) => ContextMenuHandler;