stoatbot.js
    Preparing search index...

    Interface MessageOptions

    interface MessageOptions {
        attachments?: string[] | Readable[] | File[];
        content?: string;
        embeds?: MessageEmbed[];
        masquerade?: {
            avatar?: string | null;
            colour?: string | null;
            name?: string | null;
        };
        replies?: MessageReply[];
    }
    Index

    Properties

    attachments?: string[] | Readable[] | File[]
    content?: string
    embeds?: MessageEmbed[]
    masquerade?: {
        avatar?: string | null;
        colour?: string | null;
        name?: string | null;
    }

    Type Declaration

    • Optionalavatar?: string | null

      Replace the avatar shown on this message (URL to image file)

    • Optionalcolour?: string | null

      Replace the display role colour shown on this message

      Must have ManageRole permission to use

    • Optionalname?: string | null

      Replace the display name shown on this message

    replies?: MessageReply[]