Started creating the page to generate exams
This commit is contained in:
@@ -3,13 +3,7 @@ import {Module} from ".";
|
||||
export type Exam = ReadingExam | ListeningExam | WritingExam | SpeakingExam | LevelExam;
|
||||
|
||||
export interface ReadingExam {
|
||||
parts: {
|
||||
text: {
|
||||
title: string;
|
||||
content: string;
|
||||
};
|
||||
exercises: Exercise[];
|
||||
}[];
|
||||
parts: ReadingPart[];
|
||||
id: string;
|
||||
module: "reading";
|
||||
minTimer: number;
|
||||
@@ -17,6 +11,14 @@ export interface ReadingExam {
|
||||
isDiagnostic: boolean;
|
||||
}
|
||||
|
||||
export interface ReadingPart {
|
||||
text: {
|
||||
title: string;
|
||||
content: string;
|
||||
};
|
||||
exercises: Exercise[];
|
||||
}
|
||||
|
||||
export interface LevelExam {
|
||||
module: "level";
|
||||
id: string;
|
||||
|
||||
Reference in New Issue
Block a user