1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-11-17 20:30:58 -05:00
Daggerbot-TS/src/helpers/MessageTool.ts

15 lines
578 B
TypeScript
Raw Normal View History

2023-08-29 20:21:53 -04:00
import Discord from 'discord.js';
export default class MessageTool {
static embedStruct(color:Discord.ColorResolvable, title:string, description?:string|null, image?:string|null){
const embed = new Discord.EmbedBuilder().setColor(color).setTitle(title);
if (description) embed.setDescription(description);
if (image) embed.setImage(image);
return embed
}
static concatMessage(...messages:string[]){
return messages.join('\n')
}
}
// I want to come up with better name instead of calling this file "MessageTool", but I am super bad at naming things.