blob: dbf5bd7f58990824396cf15e39da779cd368ad09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/**
* Big Five temperament profile. Each axis is 0–100, mostly stable across
* a life with slow drift under sustained conditions.
*/
export interface BigFiveProfile {
readonly openness: number
readonly conscientiousness: number
readonly extraversion: number
readonly agreeableness: number
readonly neuroticism: number
}
|