Merged in feature-report-export (pull request #16)

Feature report export

Approved-by: Tiago Ribeiro
This commit is contained in:
João Ramos
2024-01-11 12:50:35 +00:00
committed by Tiago Ribeiro
43 changed files with 2335 additions and 23 deletions

View File

@@ -0,0 +1,22 @@
import {Module} from "@/interfaces";
export interface ModuleScore {
score: number;
total: number;
code: Module;
module: Module | 'Overall';
png?: string,
evaluation?: string,
suggestions?: string,
}
export interface StudentData {
id: string;
name: string;
email: string;
gender: string;
date: string;
result: string;
level?: string;
bandScore: number;
}