Files
encoach_frontend/src/interfaces/results.ts
Tiago Ribeiro 87f7b717fc - Adapted more of the design to be more responsive;
- Revamped some of the UserSolutions;
- Transformed the homepage chart to use actual dynamic values;
- Created an endpoint for the stats;
2023-04-20 00:20:20 +01:00

10 lines
175 B
TypeScript

import {Module} from "@/interfaces";
export type UserResults = {[key in Module]: ModuleResult};
interface ModuleResult {
exams: string[];
score: number;
total: number;
}