import { Message } from 'discord.js'; export interface DyNTS_DiBo_Command { command: string; description: string; commandHandler: (message: Message) => Promise; permissionNeeded?: (message: Message) => Promise; }