Added the ability for assignments to use partial exams as well

This commit is contained in:
Tiago Ribeiro
2024-01-26 16:16:28 +00:00
parent 4e199931aa
commit 13401562fb
4 changed files with 20 additions and 7 deletions

View File

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