/** * This is a data structure used to diplay links . */ export interface Link { readonly href: string; readonly value: string; }