Interface UnknownMessage

A generic non-precise type of Discord's incoming messages.

interface UnknownMessage {
    args: Record<string, unknown>;
    cmd: string;
    nonce: null | string;
}

Hierarchy (View Summary)

Properties

Properties

args: Record<string, unknown>

Message arguments.

cmd: string

Message type/command.

nonce: null | string

Nonce identifying the communication.