AniLink - v1.29.2
    Preparing search index...

    MediaListEntry is an interface representing an entry in a media list. It includes the id and status each having their own properties.

    interface MediaListEntry {
        id: number;
        status: string;
    }
    Index
    id: number

    id is a number representing the unique identifier of the media list entry.

    status: string

    status is a string representing the status of the media list entry.