@actnet/app-core - v0.1.0
    Preparing search index...

    Interface LinkPreview

    A rich link-preview card (docs/35). The sender generates it at compose time; image (the og:image) is an Attachment downloaded like any other blob. On receive these are anti-spoof-filtered: only previews whose url occurs in the message body are surfaced.

    interface LinkPreview {
        url: string;
        title: string;
        description: string;
        date?: Instant;
        image?: Attachment;
    }
    Index

    Properties

    url: string

    The previewed URL — occurs in the message body.

    title: string
    description: string
    date?: Instant

    Article published date; undefined if unknown.

    image?: Attachment

    og:image as an attachment; undefined for a text-only card.