discord-jellyfin-bot/src/models/generic-try-handler.ts

7 lines
198 B
TypeScript

import { InteractionEditReplyOptions, MessagePayload } from 'discord.js';
export interface GenericTryHandler {
success: boolean;
reply: string | MessagePayload | InteractionEditReplyOptions;
}