obby-client for TypeScript
    Preparing search index...

    Type Alias LinkPreview

    A preview of a link someone posted, built by the server and attached to the message.

    The server fetches the page; a client never does. There is no capability to negotiate, and the server refuses these tags from any sender but itself, so a peer cannot forge one.

    type LinkPreview = {
        image: string | null;
        snippet: string | null;
        title: string;
    }
    Index
    image: string | null

    An image, already re-hosted by the server when it has a filehost configured.

    snippet: string | null

    A description of the page, when the page offered one.

    title: string

    The page title. Always present when a preview exists at all.