blob: eae65ec3bdf5a7e9d66eb4a24c4b2bce63d24a38 (
plain)
1
2
3
4
5
6
7
8
9
|
/**
* Life satisfaction split into hedonic (day-to-day pleasure) and eudaimonic
* (sense of meaning / purpose). They can diverge; eudaimonic matters more
* for end-of-life peace. Each 0–1.
*/
export interface SatisfactionProfile {
readonly hedonic: number
readonly eudaimonic: number
}
|