this repo has no description
1export interface LessonProgress {
2 topic_id: string;
3 lesson_id: string;
4 completed: boolean;
5 best_score: number;
6 completed_at: string | null;
7}
8
9export interface UserStats {
10 xp: number;
11 streak_days: number;
12 hearts: number;
13 streak_freezes: number;
14}
15
16export interface ProgressData {
17 lessons: LessonProgress[];
18 stats: UserStats;
19}