- Created a Diagnostics component;

- Corrected the history code;
This commit is contained in:
Tiago Ribeiro
2023-05-27 15:45:03 +01:00
parent 2b34bf8f0b
commit 23b3703b67
7 changed files with 163 additions and 24 deletions

View File

@@ -11,6 +11,7 @@ export interface ReadingExam {
exercises: Exercise[];
module: "reading";
minTimer: number;
type: "academic" | "general";
}
export interface ListeningExam {

View File

@@ -6,6 +6,8 @@ export interface User {
profilePicture: string;
id: string;
experience: number;
isFirstLogin: boolean;
focus: "academic" | "general";
type: Type;
}