mirror of
https://github.com/informaticker/discord-jellyfin-bot.git
synced 2024-11-25 11:01:56 +01:00
10 lines
215 B
TypeScript
10 lines
215 B
TypeScript
|
import { InteractionReplyOptions } from 'discord.js';
|
||
|
|
||
|
export interface GenericTryHandler {
|
||
|
success: boolean;
|
||
|
reply:
|
||
|
| string
|
||
|
| InteractionReplyOptions
|
||
|
| Promise<string | InteractionReplyOptions>;
|
||
|
}
|