RichContentLink - A hyperlink replacement embedded inside a ReadOnlyCollector template. The key matches the {{key}} token in the template; href is passed through from DaVinci unmodified — consumers are responsible for sanitizing it before rendering.

interface RichContentLink {
    href: string;
    key: string;
    target?: "_self" | "_blank";
    type: "link";
    value: string;
}

Properties

href: string
key: string
target?: "_self" | "_blank"
type: "link"
value: string