File

src/app/components/sop-links/sop-links.ts

Description

An interface representing the label and URL of the links

Index

Properties

Properties

href
href: string
Type : string

URL for the link

title
title: string
Type : string

Label for the link

export interface SopLinks {
  /** Title of the list of link(s) */
  sopTitle: string;
  /** Label and URL of the link(s) */
  href: Links[];
}

/** An interface representing the label and URL of the links */
interface Links {
  /** Label for the link */
  title: string;
  /** URL for the link */
  href: string;
}

results matching ""

    No results matching ""