export const ESleepLevel = { EXCELLENT: "EXCELLENT", GOOD: "GOOD", BAD: "BAD", VERY_BAD: "VERY_BAD", TERRIBLE: "TERRIBLE", NONE: "NONE", } as const; export type ESleepLevel = keyof typeof ESleepLevel; export const SleepLevels: ESleepLevel[] = Object.values(ESleepLevel);