Listening preview and some more patches

This commit is contained in:
Carlos-Mesquita
2024-11-06 09:23:34 +00:00
parent ffa2045a2d
commit b50913eda8
24 changed files with 467 additions and 253 deletions

View File

@@ -47,6 +47,14 @@ export interface LevelExam extends ExamBase {
export interface LevelPart extends Section {
context?: string;
exercises: Exercise[];
audio?: {
source: string;
repeatableTimes: number; // *The amount of times the user is allowed to repeat the audio, 0 for unlimited
};
text?: {
title: string;
content: string;
};
}
export interface ListeningExam extends ExamBase {