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

12 lines
263 B
TypeScript
Raw Normal View History

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