Represents a link in the blog.

interface RawLink {
    rel: LinkRel;
    href: string;
    type?: string;
}

Hierarchy (view full)

Properties

Properties

rel: LinkRel

The relationship of the link.

href: string

The URL of the link.

type?: string

The MIME type of the linked resource.