Interface PublisherLink

Represents a link displayed in the footer subtitle.

interface PublisherLink {
    href: string;
    label: string;
    target?: string;
    type: "link";
}

Properties

Properties

href: string

The URL the link points to.

label: string

The label for the link.

target?: string

The target where the link should be opened (optional).

type: "link"

Specifies that this subtitle item is a link.