Represents a link in the blog.

interface RawSourceLink {
    source: string;
    rel: LinkRel;
    href: string;
    type?: string;
}

Hierarchy (view full)

Properties

Properties

source: string

The link to the resource it belongs to.

rel: LinkRel

The relationship of the link.

href: string

The URL of the link.

type?: string

The MIME type of the linked resource.