export interface AnchorInterface { /** * The URL of the link. * See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLAnchorElement/href) */ href?: string; /** * The target browsing context for the link. * See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLAnchorElement/target) */ target?: AnchorTarget; /** * The relationship between the current document and the linked document. * See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLAnchorElement/rel) */ rel?: string; } export type AnchorTarget = '_self' | '_blank' | '_parent' | '_top';