AniLink - v1.29.2
    Preparing search index...

    ListScores is an interface representing the scores of a list. It includes the meanScore and standardDeviation each having their own properties.

    interface ListScores {
        meanScore: number;
        standardDeviation: number;
    }
    Index
    meanScore: number

    meanScore is a number representing the mean score of the list.

    standardDeviation: number

    standardDeviation is a number representing the standard deviation of the scores in the list.