diff --git a/src/types/messages/create_message.ts b/src/types/messages/create_message.ts index fa1704f90..c59ef410f 100644 --- a/src/types/messages/create_message.ts +++ b/src/types/messages/create_message.ts @@ -8,13 +8,11 @@ import { MessageComponents } from "./components/message_components.ts"; export interface CreateMessage { /** The message contents (up to 2000 characters) */ content?: string; - /** A nonce that can be used for optimistic message sending */ - nonce?: number | string; /** true if this is a TTS message */ tts?: boolean; /** Embedded `rich` content */ embed?: Embed; - /** Allowed mentions for a message */ + /** Allowed mentions for the message */ allowedMentions?: AllowedMentions; /** Include to make your message a reply */ messageReference?: MessageReference;