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

10 lines
215 B
TypeScript
Raw Normal View History

import { InteractionReplyOptions } from 'discord.js';
export interface GenericTryHandler {
success: boolean;
reply:
| string
| InteractionReplyOptions
| Promise<string | InteractionReplyOptions>;
}