ExtendedMessage
extends Message
This class extends the Message
object from the Discord.js framework.
These properties are used to reduce errors and apply best practices when working with Discord.js
Extended Properties
Parameter | Type |
---|---|
commandId | string |
user | GuildMember |
customId | string |
export interface ExtendedMessage extends Message {
commandId: string;
user: GuildMember;
customId: string;
}