Discord.https - v3.0.16
    Preparing search index...
    interface InteractionEditReplyOptions {
        allowedMentions?: MessageMentionOptions;
        attachments?: readonly (Attachment | MessageEditAttachmentData)[];
        components?: readonly (
            | APIMessageTopLevelComponent
            | JSONEncodable<APIMessageTopLevelComponent>
            | TopLevelComponentData
            | ActionRowData<
                (MessageActionRowComponentData | MessageActionRowComponentBuilder),
            >
        )[];
        content?: null | string;
        embeds?: readonly (APIEmbed | JSONEncodable<APIEmbed>)[];
        files?: readonly (
            | BufferResolvable
            | Stream
            | JSONEncodable<APIAttachment>
            | Attachment
            | AttachmentBuilder
            | AttachmentPayload
        )[];
        flags?: BitFieldResolvable<
            "SuppressEmbeds"
            | "IsComponentsV2",
            SuppressEmbeds | IsComponentsV2,
        >;
        message?: "@original";
        threadId?: string;
        withComponents?: boolean;
    }

    Hierarchy

    • WebhookMessageEditOptions
      • InteractionEditReplyOptions
    Index

    Properties

    allowedMentions?: MessageMentionOptions
    attachments?: readonly (Attachment | MessageEditAttachmentData)[]
    components?: readonly (
        | APIMessageTopLevelComponent
        | JSONEncodable<APIMessageTopLevelComponent>
        | TopLevelComponentData
        | ActionRowData<
            (MessageActionRowComponentData | MessageActionRowComponentBuilder),
        >
    )[]
    content?: null | string
    embeds?: readonly (APIEmbed | JSONEncodable<APIEmbed>)[]
    files?: readonly (
        | BufferResolvable
        | Stream
        | JSONEncodable<APIAttachment>
        | Attachment
        | AttachmentBuilder
        | AttachmentPayload
    )[]
    flags?: BitFieldResolvable<
        "SuppressEmbeds"
        | "IsComponentsV2",
        SuppressEmbeds | IsComponentsV2,
    >
    message?: "@original"

    The response to edit. Defaults to '@original'.

    threadId?: string
    withComponents?: boolean