AniLink - v1.29.2
    Preparing search index...

    Favoured is an interface representing a favoured entity. It includes the genre, amount, meanScore, timeWatched, tag, staff, studio, year, and format each having their own properties.

    interface Favoured {
        amount: number;
        format?: string;
        genre?: string;
        meanScore: number;
        staff?: Staff;
        studio?: Studio;
        tag?: Tag;
        timeWatched: number;
        year?: number;
    }
    Index
    amount: number

    amount is a number representing the amount of the favoured entity.

    format?: string

    format is a string representing the format of the favoured entity.

    genre?: string

    genre is a string representing the genre of the favoured entity.

    meanScore: number

    meanScore is a number representing the mean score of the favoured entity.

    staff?: Staff

    staff is an object of type Staff representing the staff of the favoured entity.

    studio?: Studio

    studio is an object of type Studio representing the studio of the favoured entity.

    tag?: Tag

    tag is an object of type Tag representing the tag of the favoured entity.

    timeWatched: number

    timeWatched is a number representing the time watched of the favoured entity.

    year?: number

    year is a number representing the year of the favoured entity.