src/app/components/sop-links/sop-links.ts
An interface representing the label and URL of the links
Properties |
href |
href:
|
Type : string
|
URL for the link |
title |
title:
|
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;
}