Added a solution version for the MultipleChoice Exercise
This commit is contained in:
@@ -65,6 +65,7 @@ export interface WriteBlanksExercise {
|
||||
export interface MatchSentencesExercise {
|
||||
type: "matchSentences";
|
||||
prompt: string;
|
||||
userSolutions: {question: string; option: string}[];
|
||||
sentences: {
|
||||
id: string;
|
||||
sentence: string;
|
||||
@@ -82,6 +83,7 @@ export interface MultipleChoiceExercise {
|
||||
type: "multipleChoice";
|
||||
prompt: string; // *EXAMPLE: "Select the appropriate option."
|
||||
questions: MultipleChoiceQuestion[];
|
||||
userSolutions: {question: string; option: string}[];
|
||||
}
|
||||
|
||||
export interface MultipleChoiceQuestion {
|
||||
|
||||
Reference in New Issue
Block a user