pnp-scheduler/source/Events/EventClasses/ModalInteractionEvent.ts

14 lines
No EOL
305 B
TypeScript

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
) {
}
}