src/app/components/sop-links/sop-links.ts
An interface representing the details of the links
Properties |
href |
href:
|
Type : Links[]
|
Label and URL of the link(s) |
sopTitle |
sopTitle:
|
Type : string
|
Title of the list of link(s) |
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;
}