@discordx/pagination
    Preparing search index...

    Interface PaginationItem

    interface PaginationItem {
        allowedMentions?: MessageMentionOptions;
        attachments?: (Attachment | MessageEditAttachmentData)[];
        components?: readonly (
            | APIMessageTopLevelComponent
            | JSONEncodable<APIMessageTopLevelComponent>
            | TopLevelComponentData
            | ActionRowData<
                (MessageActionRowComponentData | MessageActionRowComponentBuilder),
            >
        )[];
        content?: string;
        embeds?: readonly (APIEmbed | JSONEncodable<APIEmbed>)[];
        files?: readonly (
            | Attachment
            | BufferResolvable
            | Stream
            | JSONEncodable<APIAttachment>
            | AttachmentBuilder
            | AttachmentPayload
        )[];
    }

    Hierarchy

    • BaseMessageOptions
      • PaginationItem
    Index

    Properties

    allowedMentions?: MessageMentionOptions
    attachments?: (Attachment | MessageEditAttachmentData)[]
    components?: readonly (
        | APIMessageTopLevelComponent
        | JSONEncodable<APIMessageTopLevelComponent>
        | TopLevelComponentData
        | ActionRowData<
            (MessageActionRowComponentData | MessageActionRowComponentBuilder),
        >
    )[]
    content?: string
    embeds?: readonly (APIEmbed | JSONEncodable<APIEmbed>)[]
    files?: readonly (
        | Attachment
        | BufferResolvable
        | Stream
        | JSONEncodable<APIAttachment>
        | AttachmentBuilder
        | AttachmentPayload
    )[]