Updated the Level Exam to work based on Parts
This commit is contained in:
@@ -27,13 +27,18 @@ export interface ReadingPart {
|
||||
export interface LevelExam {
|
||||
module: "level";
|
||||
id: string;
|
||||
exercises: Exercise[];
|
||||
parts: LevelPart[];
|
||||
minTimer: number;
|
||||
isDiagnostic: boolean;
|
||||
variant?: Variant;
|
||||
difficulty?: Difficulty;
|
||||
}
|
||||
|
||||
export interface LevelPart {
|
||||
context?: string;
|
||||
exercises: Exercise[];
|
||||
}
|
||||
|
||||
export interface ListeningExam {
|
||||
parts: ListeningPart[];
|
||||
id: string;
|
||||
|
||||
Reference in New Issue
Block a user