mirror of
https://github.com/informaticker/discord-jellyfin-bot.git
synced 2024-11-25 02:51:57 +01:00
7 lines
198 B
TypeScript
7 lines
198 B
TypeScript
import { InteractionEditReplyOptions, MessagePayload } from 'discord.js';
|
|
|
|
export interface GenericTryHandler {
|
|
success: boolean;
|
|
reply: string | MessagePayload | InteractionEditReplyOptions;
|
|
}
|