Created more types of stats to be showcased:

- Total Exams per Module;
- Average Score per Module;
- Total Exercises per Type;
- Average Score per Exercise Type;
This commit is contained in:
Tiago Ribeiro
2023-04-20 10:38:55 +01:00
parent 87f7b717fc
commit e60130069d
4 changed files with 105 additions and 62 deletions

View File

@@ -16,6 +16,7 @@ export interface Stat {
exercise: string;
module: Module;
solutions: any[];
type: string;
score: {
correct: number;
total: number;