Started to update the exam to work with Zustand for the history review

This commit is contained in:
Tiago Ribeiro
2023-05-08 10:44:16 +01:00
parent 4b5c99c654
commit 1813de499d
6 changed files with 88 additions and 8 deletions

View File

@@ -69,6 +69,10 @@ export interface WritingExercise {
info: string; //* The information about the task, like the amount of time they should spend on it
prompt: string; //* The context given to the user containing what they should write about
wordCounter: WordCounter; //* The minimum or maximum amount of words that should be written
userSolutions: {
id: string;
solution: string;
}[];
}
export interface SpeakingExercise {
@@ -77,6 +81,10 @@ export interface SpeakingExercise {
title: string;
text: string;
prompts: string[];
userSolutions: {
id: string;
solution: string;
}[];
}
export interface FillBlanksExercise {