Represents a link of a blog entry.

interface RawEntryLink {
    title?: string;
    rel: LinkRel;
    href: string;
    type?: string;
}

Hierarchy (view full)

Properties

Properties

title?: string

The title of the entry.

rel: LinkRel

The relationship of the link.

href: string

The URL of the link.

type?: string

The MIME type of the linked resource.