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}
14
15export interface ProgressData {
16 lessons: LessonProgress[];
17 stats: UserStats;
18}