ExternalLink is an interface representing an external link. It includes the id, url, and site each having their own properties.

interface ExternalLink {
    id: number;
    site: string;
    url: string;
}

Properties

Properties

id: number

id is a number representing the unique identifier of the external link.

site: string

site is a string representing the site of the external link.

url: string

url is a string representing the URL of the external link.