AniLink - v1.29.2
    Preparing search index...

    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;
    }
    Index
    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.