import {ModalSubmitInteraction} from "discord.js"; import {EventType, NormalEvent} from "../EventHandler.types"; export class ModalInteractionEvent implements NormalEvent { type: EventType.Normal = EventType.Normal; constructor( public readonly interaction: ModalSubmitInteraction ) { } }