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

Properties

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.