Interface FollowupMessageInteractionResponse<I>

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

Type Parameters

Hierarchy (view full)

Properties

interaction: I
type: "followup"

Methods