Web utility
    Preparing search index...

    Interface HTMLHyperLinkProps

    interface HTMLHyperLinkProps {
        href?: string;
        onundefined?: (event: unknown) => any;
        target?: "_self" | "_parent" | "_top" | "_blank";
    }

    Hierarchy (View Summary)

    Index

    Properties

    href?: string

    Returns the hyperlink's URL.

    Can be set, to change the URL.

    MDN Reference

    onundefined?: (event: unknown) => any
    target?: "_self" | "_parent" | "_top" | "_blank"

    The target property of the HTMLAnchorElement interface is a string that indicates where to display the linked resource.

    MDN Reference