Updated the module generation to allow for only certain parts to be made

This commit is contained in:
Tiago Ribeiro
2024-01-22 18:50:12 +00:00
parent c868ea8795
commit 81943dbf42
5 changed files with 64 additions and 31 deletions

View File

@@ -1,7 +1,7 @@
import {Module} from ".";
export type Exam = ReadingExam | ListeningExam | WritingExam | SpeakingExam | LevelExam;
export type Variant = "diagnostic" | "partial";
export type Variant = "full" | "diagnostic" | "partial";
export interface ReadingExam {
parts: ReadingPart[];