Interface FollowupMessageInteractionResponse<I>

interface FollowupMessageInteractionResponse<I> {
    callback: null;
    interaction: I;
    message: Message<ResponseInteractionChannelType<I>>;
    type: "followup";
    deleteMessage(): Promise<void>;
    getMessage(): Promise<Message<ResponseInteractionChannelType<I>>>;
}

Type Parameters

Hierarchy (view full)

Properties

callback: null
interaction: I
type: "followup"

Methods